diff --git a/Bonding.txt b/Bonding.txt new file mode 100644 index 0000000..eadb575 --- /dev/null +++ b/Bonding.txt @@ -0,0 +1,3240 @@ +commit 552695c33894275c430d9e5faee0a619b5359b25 +Author: Benjamin +Date: Tue Jul 20 16:18:39 2021 +0200 + + chore(deploy) update deps and deploy scripts + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 8e2ebcc..670411d 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -65,8 +65,8 @@ contract Bonding is CollectableDust { + amount + ); + // remove one coin +- uint256 expected = +- (metaPool.calc_withdraw_one_coin(amount, 0) * 99) / 100; ++ uint256 expected = (metaPool.calc_withdraw_one_coin(amount, 0) * 99) / ++ 100; + // update twap + metaPool.remove_liquidity_one_coin(amount, 0, expected); + ITWAPOracle(manager.twapOracleAddress()).update(); +@@ -89,8 +89,8 @@ contract Bonding is CollectableDust { + amount + ); + // remove one coin +- uint256 expected = +- (metaPool.calc_withdraw_one_coin(amount, 1) * 99) / 100; ++ uint256 expected = (metaPool.calc_withdraw_one_coin(amount, 1) * 99) / ++ 100; + // update twap + metaPool.remove_liquidity_one_coin(amount, 1, expected); + ITWAPOracle(manager.twapOracleAddress()).update(); +@@ -190,12 +190,8 @@ contract Bonding is CollectableDust { + _lpsAmount + ); + +- uint256 _sharesAmount = +- IUbiquityFormulas(manager.formulasAddress()).durationMultiply( +- _lpsAmount, +- _weeks, +- bondingDiscountMultiplier +- ); ++ uint256 _sharesAmount = IUbiquityFormulas(manager.formulasAddress()) ++ .durationMultiply(_lpsAmount, _weeks, bondingDiscountMultiplier); + + // 1 week = 45361 blocks = 2371753*7/366 + // n = (block + duration * 45361) +@@ -257,13 +253,12 @@ contract Bonding is CollectableDust { + } + + function currentShareValue() public view returns (uint256 priceShare) { +- uint256 totalLP = +- IERC20(manager.stableSwapMetaPoolAddress()).balanceOf( +- address(this) +- ); ++ uint256 totalLP = IERC20(manager.stableSwapMetaPoolAddress()).balanceOf( ++ address(this) ++ ); + +- uint256 totalShares = +- IERC1155Ubiquity(manager.bondingShareAddress()).totalSupply(); ++ uint256 totalShares = IERC1155Ubiquity(manager.bondingShareAddress()) ++ .totalSupply(); + + priceShare = IUbiquityFormulas(manager.formulasAddress()).bondPrice( + totalLP, + +commit d59a14bd2ecab4b3d2e98eea5f36be00ab843716 +Author: アレクサンダー U B I Q U I T Y +Date: Fri Jun 4 15:03:01 2021 -0400 + + because travis made me rush this commit + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index f480f0f..8e2ebcc 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -70,9 +70,9 @@ contract Bonding is CollectableDust { + // update twap + metaPool.remove_liquidity_one_coin(amount, 0, expected); + ITWAPOracle(manager.twapOracleAddress()).update(); +- IERC20(manager.uADTokenAddress()).safeTransfer( ++ IERC20(manager.dollarTokenAddress()).safeTransfer( + manager.treasuryAddress(), +- IERC20(manager.uADTokenAddress()).balanceOf(address(this)) ++ IERC20(manager.dollarTokenAddress()).balanceOf(address(this)) + ); + } + +@@ -226,7 +226,7 @@ contract Bonding is CollectableDust { + msg.sender, + _id + ) >= _sharesAmount, +- "Bonding: Caller does not have enough shares" ++ "Bonding: caller does not have enough shares" + ); + + _updateOracle(); +@@ -275,7 +275,7 @@ contract Bonding is CollectableDust { + function currentTokenPrice() public view returns (uint256) { + return + ITWAPOracle(manager.twapOracleAddress()).consult( +- manager.uADTokenAddress() ++ manager.dollarTokenAddress() + ); + } + +@@ -283,7 +283,7 @@ contract Bonding is CollectableDust { + uint256 _currentShareValue = currentShareValue(); + require( + _currentShareValue != 0, +- "Bonding: Share Value should not be nul" ++ "Bonding: share value should not be null" + ); + + IERC1155Ubiquity(manager.bondingShareAddress()).mint( + +commit 8c43f95f6c227ee64413ece02a7033200396b5dc +Author: Benjamin +Date: Fri Jun 4 19:38:27 2021 +0200 + + fix(naming) cleaning + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index f556a9b..f480f0f 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -14,8 +14,6 @@ import "./interfaces/ITWAPOracle.sol"; + import "./interfaces/IERC1155Ubiquity.sol"; + import "./utils/CollectableDust.sol"; + +-import "hardhat/console.sol"; +- + contract Bonding is CollectableDust { + using SafeERC20 for IERC20; + + +commit 9dbc3b4c1bbe60eac622481a726ef4813c08493c +Author: Benjamin +Date: Mon May 31 18:51:23 2021 +0200 + + feat(price reset) for uad and 32crv with transfer to treasury + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index d81c0dc..f556a9b 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -54,11 +54,12 @@ contract Bonding is CollectableDust { + // solhint-disable-next-line no-empty-blocks + receive() external payable {} + +- /// @dev priceReset remove uAD unilateraly from the curve LP share sitting inside +- /// the bonding contract and burn the uAD received ++ /// @dev uADPriceReset remove uAD unilateraly from the curve LP share sitting inside ++ /// the bonding contract and send the uAD received to the treasury. ++ /// This will have the immediate effect of pushing the uAD price HIGHER + /// @param amount of LP token to be removed for uAD + /// @notice it will remove one coin only from the curve LP share sitting in the bonding contract +- function priceReset(uint256 amount) external onlyBondingManager { ++ function uADPriceReset(uint256 amount) external onlyBondingManager { + IMetaPool metaPool = IMetaPool(manager.stableSwapMetaPoolAddress()); + // safe approve + IERC20(manager.stableSwapMetaPoolAddress()).safeApprove( +@@ -71,12 +72,36 @@ contract Bonding is CollectableDust { + // update twap + metaPool.remove_liquidity_one_coin(amount, 0, expected); + ITWAPOracle(manager.twapOracleAddress()).update(); +- UbiquityAlgorithmicDollar(manager.uADTokenAddress()).burnFrom( +- address(this), ++ IERC20(manager.uADTokenAddress()).safeTransfer( ++ manager.treasuryAddress(), + IERC20(manager.uADTokenAddress()).balanceOf(address(this)) + ); + } + ++ /// @dev crvPriceReset remove 3CRV unilateraly from the curve LP share sitting inside ++ /// the bonding contract and send the 3CRV received to the treasury ++ /// This will have the immediate effect of pushing the uAD price LOWER ++ /// @param amount of LP token to be removed for 3CRV tokens ++ /// @notice it will remove one coin only from the curve LP share sitting in the bonding contract ++ function crvPriceReset(uint256 amount) external onlyBondingManager { ++ IMetaPool metaPool = IMetaPool(manager.stableSwapMetaPoolAddress()); ++ // safe approve ++ IERC20(manager.stableSwapMetaPoolAddress()).safeApprove( ++ address(this), ++ amount ++ ); ++ // remove one coin ++ uint256 expected = ++ (metaPool.calc_withdraw_one_coin(amount, 1) * 99) / 100; ++ // update twap ++ metaPool.remove_liquidity_one_coin(amount, 1, expected); ++ ITWAPOracle(manager.twapOracleAddress()).update(); ++ IERC20(manager.curve3PoolTokenAddress()).safeTransfer( ++ manager.treasuryAddress(), ++ IERC20(manager.curve3PoolTokenAddress()).balanceOf(address(this)) ++ ); ++ } ++ + /// Collectable Dust + function addProtocolToken(address _token) + external + +commit 231bba312c8214fb3c40ebf1e4a8d65c21b2ea26 +Author: Benjamin +Date: Mon May 17 23:38:03 2021 +0200 + + feat(bonding): price reset + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 291cd8e..d81c0dc 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -4,9 +4,9 @@ pragma solidity ^0.8.3; + import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; + import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; + import "./interfaces/IERC1155Ubiquity.sol"; +- ++import "./interfaces/IMetaPool.sol"; + import "./interfaces/IUbiquityFormulas.sol"; +- ++import "./UbiquityAlgorithmicDollar.sol"; + import "./UbiquityAlgorithmicDollarManager.sol"; + import "./interfaces/ISablier.sol"; + import "./interfaces/IMasterChef.sol"; +@@ -54,6 +54,29 @@ contract Bonding is CollectableDust { + // solhint-disable-next-line no-empty-blocks + receive() external payable {} + ++ /// @dev priceReset remove uAD unilateraly from the curve LP share sitting inside ++ /// the bonding contract and burn the uAD received ++ /// @param amount of LP token to be removed for uAD ++ /// @notice it will remove one coin only from the curve LP share sitting in the bonding contract ++ function priceReset(uint256 amount) external onlyBondingManager { ++ IMetaPool metaPool = IMetaPool(manager.stableSwapMetaPoolAddress()); ++ // safe approve ++ IERC20(manager.stableSwapMetaPoolAddress()).safeApprove( ++ address(this), ++ amount ++ ); ++ // remove one coin ++ uint256 expected = ++ (metaPool.calc_withdraw_one_coin(amount, 0) * 99) / 100; ++ // update twap ++ metaPool.remove_liquidity_one_coin(amount, 0, expected); ++ ITWAPOracle(manager.twapOracleAddress()).update(); ++ UbiquityAlgorithmicDollar(manager.uADTokenAddress()).burnFrom( ++ address(this), ++ IERC20(manager.uADTokenAddress()).balanceOf(address(this)) ++ ); ++ } ++ + /// Collectable Dust + function addProtocolToken(address _token) + external +@@ -124,9 +147,10 @@ contract Bonding is CollectableDust { + emit UGOVPerBlockUpdated(_uGOVPerBlock); + } + +- /* +- Desposit function with uAD-3CRV LP tokens (stableSwapMetaPoolAddress) +- */ ++ /// @dev deposit uAD-3CRV LP tokens for a duration to receive bonding shares ++ /// @param _lpsAmount of LP token to send ++ /// @param _weeks during lp token will be held ++ /// @notice weeks act as a multiplier for the amount of bonding shares to be received + function deposit(uint256 _lpsAmount, uint256 _weeks) + public + returns (uint256 _id) +@@ -164,6 +188,10 @@ contract Bonding is CollectableDust { + ); + } + ++ /// @dev withdraw an amount of uAD-3CRV LP tokens ++ /// @param _sharesAmount of bonding shares of type _id to be withdrawn ++ /// @param _id bonding shares id ++ /// @notice bonding shares are ERC1155 (aka NFT) because they have an expiration date + function withdraw(uint256 _sharesAmount, uint256 _id) public { + require( + block.number > _id, + +commit a4f3a291ac26f9c4104398ac2ff33139c7c1c6a1 +Author: Benjamin +Date: Fri May 7 16:18:30 2021 +0200 + + feat(ugov): add ugov incetive for bonding participants + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 7a78ade..291cd8e 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -79,7 +79,6 @@ contract Bonding is CollectableDust { + _sendDust(_to, _token, _amount); + } + +- + function setSablier(address _sablier) external onlyBondingManager { + sablier = ISablier(_sablier); + emit SablierUpdated(_sablier); +@@ -136,7 +135,6 @@ contract Bonding is CollectableDust { + 1 <= _weeks && _weeks <= 208, + "Bonding: duration must be between 1 and 208 weeks" + ); +- + _updateOracle(); + + IERC20(manager.stableSwapMetaPoolAddress()).safeTransferFrom( +@@ -152,19 +150,18 @@ contract Bonding is CollectableDust { + bondingDiscountMultiplier + ); + +- // First block 2020 = 9193266 https://etherscan.io/block/9193266 +- // First block 2021 = 11565019 https://etherscan.io/block/11565019 +- // 2020 = 2371753 blocks = 366 days + // 1 week = 45361 blocks = 2371753*7/366 + // n = (block + duration * 45361) + // id = n - n % blockRonding + // blockRonding = 100 => 2 ending zeros + uint256 n = block.number + _weeks * blockCountInAWeek; + _id = n - (n % blockRonding); +- + _mint(_sharesAmount, _id); + // set masterchef for uGOV rewards +- IMasterChef(manager.masterChefAddress()).deposit(_sharesAmount, msg.sender); ++ IMasterChef(manager.masterChefAddress()).deposit( ++ _sharesAmount, ++ msg.sender ++ ); + } + + function withdraw(uint256 _sharesAmount, uint256 _id) public { +@@ -182,6 +179,13 @@ contract Bonding is CollectableDust { + ); + + _updateOracle(); ++ // get masterchef for uGOV rewards To ensure correct computation ++ // it needs to be done BEFORE burning the shares ++ IMasterChef(manager.masterChefAddress()).withdraw( ++ _sharesAmount, ++ msg.sender ++ ); ++ + uint256 _currentShareValue = currentShareValue(); + + IERC1155Ubiquity(manager.bondingShareAddress()).burn( +@@ -199,37 +203,6 @@ contract Bonding is CollectableDust { + ONE + ) + ); +- // get masterchef for uGOV rewards +- IMasterChef(manager.masterChefAddress()).withdraw(_sharesAmount, msg.sender); +- +- // } else { +- // // The transaction must be processed by the Ethereum blockchain before +- // // the start time of the stream, or otherwise the sablier contract +- // // reverts with a "start time before block.timestamp" message. +- // uint256 streamStart = block.timestamp + 60; // tx mining + 60 seconds +- // uint256 streamStop = streamStart + redeemStreamTime; +- // // The deposit must be a multiple of the difference between the stop +- // // time and the start time +- +- // uint256 streamDuration = streamStop - streamStart; +- // tokenAmount = (tokenAmount / streamDuration) * streamDuration; +- +- // IERC20(manager.stableSwapMetaPoolAddress()).safeApprove( +- // address(sablier), +- // 0 +- // ); +- // IERC20(manager.stableSwapMetaPoolAddress()).safeApprove( +- // address(sablier), +- // tokenAmount +- // ); +- // sablier.createStream( +- // msg.sender, +- // tokenAmount, +- // manager.stableSwapMetaPoolAddress(), +- // streamStart, +- // streamStop +- // ); +- // } + } + + function currentShareValue() public view returns (uint256 priceShare) { + +commit 647ef3fd5d44f3da527426bf1c57286f3d94de80 +Author: Benjamin +Date: Wed May 5 23:09:18 2021 +0200 + + feat(masterchef): refacto + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 4401e55..7a78ade 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -9,8 +9,9 @@ import "./interfaces/IUbiquityFormulas.sol"; + + import "./UbiquityAlgorithmicDollarManager.sol"; + import "./interfaces/ISablier.sol"; ++import "./interfaces/IMasterChef.sol"; + import "./interfaces/ITWAPOracle.sol"; +-import "./interfaces/IBondingShare.sol"; ++import "./interfaces/IERC1155Ubiquity.sol"; + import "./utils/CollectableDust.sol"; + + import "hardhat/console.sol"; +@@ -78,6 +79,7 @@ contract Bonding is CollectableDust { + _sendDust(_to, _token, _amount); + } + ++ + function setSablier(address _sablier) external onlyBondingManager { + sablier = ISablier(_sablier); + emit SablierUpdated(_sablier); +@@ -161,6 +163,8 @@ contract Bonding is CollectableDust { + _id = n - (n % blockRonding); + + _mint(_sharesAmount, _id); ++ // set masterchef for uGOV rewards ++ IMasterChef(manager.masterChefAddress()).deposit(_sharesAmount, msg.sender); + } + + function withdraw(uint256 _sharesAmount, uint256 _id) public { +@@ -180,7 +184,7 @@ contract Bonding is CollectableDust { + _updateOracle(); + uint256 _currentShareValue = currentShareValue(); + +- IBondingShare(manager.bondingShareAddress()).burn( ++ IERC1155Ubiquity(manager.bondingShareAddress()).burn( + msg.sender, + _id, + _sharesAmount +@@ -195,6 +199,9 @@ contract Bonding is CollectableDust { + ONE + ) + ); ++ // get masterchef for uGOV rewards ++ IMasterChef(manager.masterChefAddress()).withdraw(_sharesAmount, msg.sender); ++ + // } else { + // // The transaction must be processed by the Ethereum blockchain before + // // the start time of the stream, or otherwise the sablier contract +@@ -255,7 +262,7 @@ contract Bonding is CollectableDust { + "Bonding: Share Value should not be nul" + ); + +- IBondingShare(manager.bondingShareAddress()).mint( ++ IERC1155Ubiquity(manager.bondingShareAddress()).mint( + msg.sender, + _id, + _sharesAmount, + +commit 1c7a843bc7da6d8c8c5ab6809ec73f1ddf3de543 +Author: Benjamin +Date: Tue May 4 09:40:15 2021 +0200 + + feat(bonding): update and improve tests + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index f9a941f..4401e55 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -25,6 +25,7 @@ contract Bonding is CollectableDust { + ISablier public sablier; + uint256 public bondingDiscountMultiplier = uint256(1000000 gwei); // 0.001 + uint256 public redeemStreamTime = 86400; // 1 day in seconds ++ uint256 public blockCountInAWeek = 45361; + uint256 public blockRonding = 100; + uint256 public uGOVPerBlock = 1; + +@@ -33,6 +34,7 @@ contract Bonding is CollectableDust { + event BondingDiscountMultiplierUpdated(uint256 _bondingDiscountMultiplier); + event RedeemStreamTimeUpdated(uint256 _redeemStreamTime); + event BlockRondingUpdated(uint256 _blockRonding); ++ event BlockCountInAWeekUpdated(uint256 _blockCountInAWeek); + event UGOVPerBlockUpdated(uint256 _uGOVPerBlock); + + modifier onlyBondingManager() { +@@ -105,6 +107,14 @@ contract Bonding is CollectableDust { + emit BlockRondingUpdated(_blockRonding); + } + ++ function setBlockCountInAWeek(uint256 _blockCountInAWeek) ++ external ++ onlyBondingManager ++ { ++ blockCountInAWeek = _blockCountInAWeek; ++ emit BlockCountInAWeekUpdated(_blockCountInAWeek); ++ } ++ + function setUGOVPerBlock(uint256 _uGOVPerBlock) + external + onlyBondingManager +@@ -121,8 +131,8 @@ contract Bonding is CollectableDust { + returns (uint256 _id) + { + require( +- 1 <= _weeks && _weeks <= 520, +- "Bonding: duration must be between 1 and 520 weeks" ++ 1 <= _weeks && _weeks <= 208, ++ "Bonding: duration must be between 1 and 208 weeks" + ); + + _updateOracle(); +@@ -147,7 +157,7 @@ contract Bonding is CollectableDust { + // n = (block + duration * 45361) + // id = n - n % blockRonding + // blockRonding = 100 => 2 ending zeros +- uint256 n = block.number + _weeks * 45361; ++ uint256 n = block.number + _weeks * blockCountInAWeek; + _id = n - (n % blockRonding); + + _mint(_sharesAmount, _id); + +commit ebea4a2d7a516ddde56dc5901971f9288dd5dd78 +Author: Alain Papazoglou +Date: Sat May 1 18:31:09 2021 +0200 + + fix(lint): fix lint pbs + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 670f16b..f9a941f 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -238,8 +238,6 @@ contract Bonding is CollectableDust { + ); + } + +- function currentPendingUGovReward() public view returns (uint256) {} +- + function _mint(uint256 _sharesAmount, uint256 _id) internal { + uint256 _currentShareValue = currentShareValue(); + require( + +commit 58c88a47b6464c474731c02e15b7d351923b1a3c +Author: Alain Papazoglou +Date: Sat May 1 13:28:19 2021 +0200 + + feat(formulas): change formula library to a contract + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 8a0322e..670f16b 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -5,7 +5,8 @@ import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; + import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; + import "./interfaces/IERC1155Ubiquity.sol"; + +-import "./libs/UbiquityFormulas.sol"; ++import "./interfaces/IUbiquityFormulas.sol"; ++ + import "./UbiquityAlgorithmicDollarManager.sol"; + import "./interfaces/ISablier.sol"; + import "./interfaces/ITWAPOracle.sol"; +@@ -16,7 +17,6 @@ import "hardhat/console.sol"; + + contract Bonding is CollectableDust { + using SafeERC20 for IERC20; +- using UbiquityFormulas for uint256; + + bytes public data = ""; + UbiquityAlgorithmicDollarManager public manager; +@@ -134,7 +134,11 @@ contract Bonding is CollectableDust { + ); + + uint256 _sharesAmount = +- _lpsAmount.durationMultiply(_weeks, bondingDiscountMultiplier); ++ IUbiquityFormulas(manager.formulasAddress()).durationMultiply( ++ _lpsAmount, ++ _weeks, ++ bondingDiscountMultiplier ++ ); + + // First block 2020 = 9193266 https://etherscan.io/block/9193266 + // First block 2021 = 11565019 https://etherscan.io/block/11565019 +@@ -175,7 +179,11 @@ contract Bonding is CollectableDust { + // if (redeemStreamTime == 0) { + IERC20(manager.stableSwapMetaPoolAddress()).safeTransfer( + msg.sender, +- _sharesAmount.redeemBonds(_currentShareValue, ONE) ++ IUbiquityFormulas(manager.formulasAddress()).redeemBonds( ++ _sharesAmount, ++ _currentShareValue, ++ ONE ++ ) + ); + // } else { + // // The transaction must be processed by the Ethereum blockchain before +@@ -216,7 +224,11 @@ contract Bonding is CollectableDust { + uint256 totalShares = + IERC1155Ubiquity(manager.bondingShareAddress()).totalSupply(); + +- priceShare = totalLP.bondPrice(totalShares, ONE); ++ priceShare = IUbiquityFormulas(manager.formulasAddress()).bondPrice( ++ totalLP, ++ totalShares, ++ ONE ++ ); + } + + function currentTokenPrice() public view returns (uint256) { + +commit 3e666463b9bb2aba3dd7b27de957433e0977517b +Author: Alain Papazoglou +Date: Thu Apr 29 08:21:26 2021 +0200 + + feat(ugov): add ugovperblock + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 204864b..8a0322e 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -26,11 +26,14 @@ contract Bonding is CollectableDust { + uint256 public bondingDiscountMultiplier = uint256(1000000 gwei); // 0.001 + uint256 public redeemStreamTime = 86400; // 1 day in seconds + uint256 public blockRonding = 100; ++ uint256 public uGOVPerBlock = 1; + + event MaxBondingPriceUpdated(uint256 _maxBondingPrice); + event SablierUpdated(address _sablier); + event BondingDiscountMultiplierUpdated(uint256 _bondingDiscountMultiplier); + event RedeemStreamTimeUpdated(uint256 _redeemStreamTime); ++ event BlockRondingUpdated(uint256 _blockRonding); ++ event UGOVPerBlockUpdated(uint256 _uGOVPerBlock); + + modifier onlyBondingManager() { + require( +@@ -99,6 +102,15 @@ contract Bonding is CollectableDust { + onlyBondingManager + { + blockRonding = _blockRonding; ++ emit BlockRondingUpdated(_blockRonding); ++ } ++ ++ function setUGOVPerBlock(uint256 _uGOVPerBlock) ++ external ++ onlyBondingManager ++ { ++ uGOVPerBlock = _uGOVPerBlock; ++ emit UGOVPerBlockUpdated(_uGOVPerBlock); + } + + /* +@@ -214,6 +226,8 @@ contract Bonding is CollectableDust { + ); + } + ++ function currentPendingUGovReward() public view returns (uint256) {} ++ + function _mint(uint256 _sharesAmount, uint256 _id) internal { + uint256 _currentShareValue = currentShareValue(); + require( + +commit 1ac9bfa14eeaacebde981e5f813c74d4a715efd4 +Author: Alain Papazoglou +Date: Fri Apr 30 18:58:17 2021 +0200 + + feat(bonding): renmae bondTokens end redeemShares to deposit and withdrax + some fix + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 406388f..204864b 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -18,12 +18,10 @@ contract Bonding is CollectableDust { + using SafeERC20 for IERC20; + using UbiquityFormulas for uint256; + +- uint16 public id = 42; + bytes public data = ""; +- + UbiquityAlgorithmicDollarManager public manager; + +- uint256 public constant TARGET_PRICE = uint256(1 ether); // 3Crv has 18 decimals ++ uint256 public constant ONE = uint256(1 ether); // 3Crv has 18 decimals + ISablier public sablier; + uint256 public bondingDiscountMultiplier = uint256(1000000 gwei); // 0.001 + uint256 public redeemStreamTime = 86400; // 1 day in seconds +@@ -106,7 +104,7 @@ contract Bonding is CollectableDust { + /* + Desposit function with uAD-3CRV LP tokens (stableSwapMetaPoolAddress) + */ +- function bondTokens(uint256 _lpsAmount, uint256 _weeks) ++ function deposit(uint256 _lpsAmount, uint256 _weeks) + public + returns (uint256 _id) + { +@@ -136,10 +134,10 @@ contract Bonding is CollectableDust { + uint256 n = block.number + _weeks * 45361; + _id = n - (n % blockRonding); + +- _bond(_sharesAmount, _id); ++ _mint(_sharesAmount, _id); + } + +- function redeemShares(uint256 _sharesAmount, uint256 _id) public { ++ function withdraw(uint256 _sharesAmount, uint256 _id) public { + require( + block.number > _id, + "Bonding: Redeem not allowed before bonding time" +@@ -165,7 +163,7 @@ contract Bonding is CollectableDust { + // if (redeemStreamTime == 0) { + IERC20(manager.stableSwapMetaPoolAddress()).safeTransfer( + msg.sender, +- _sharesAmount.redeemBonds(_currentShareValue, TARGET_PRICE) ++ _sharesAmount.redeemBonds(_currentShareValue, ONE) + ); + // } else { + // // The transaction must be processed by the Ethereum blockchain before +@@ -197,15 +195,6 @@ contract Bonding is CollectableDust { + // } + } + +- // solhint-disable-next-line no-empty-blocks +- function redeemAllShares() public { +- // for each id of msg.sender +- // redeemShares( +- // IERC20(manager.bondingShareAddress()).balanceOf(msg.sender), +- // id +- // ); +- } +- + function currentShareValue() public view returns (uint256 priceShare) { + uint256 totalLP = + IERC20(manager.stableSwapMetaPoolAddress()).balanceOf( +@@ -215,7 +204,7 @@ contract Bonding is CollectableDust { + uint256 totalShares = + IERC1155Ubiquity(manager.bondingShareAddress()).totalSupply(); + +- priceShare = totalLP.bondPrice(totalShares, TARGET_PRICE); ++ priceShare = totalLP.bondPrice(totalShares, ONE); + } + + function currentTokenPrice() public view returns (uint256) { +@@ -225,7 +214,7 @@ contract Bonding is CollectableDust { + ); + } + +- function _bond(uint256 _sharesAmount, uint256 _id) internal { ++ function _mint(uint256 _sharesAmount, uint256 _id) internal { + uint256 _currentShareValue = currentShareValue(); + require( + _currentShareValue != 0, +@@ -235,7 +224,7 @@ contract Bonding is CollectableDust { + IBondingShare(manager.bondingShareAddress()).mint( + msg.sender, + _id, +- _sharesAmount.bonding(_currentShareValue, TARGET_PRICE), ++ _sharesAmount, + data + ); + } + +commit dfe96cfcd872d2a2ab3ba64e91f152c3a5a47d14 +Author: Alain Papazoglou +Date: Fri Apr 30 16:50:42 2021 +0200 + + fix(lint): fix lint + PR remarks + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 984ce80..406388f 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -24,8 +24,6 @@ contract Bonding is CollectableDust { + UbiquityAlgorithmicDollarManager public manager; + + uint256 public constant TARGET_PRICE = uint256(1 ether); // 3Crv has 18 decimals +- // Initially set at $1,000,000 to avoid interference with growth. +- uint256 public maxBondingPrice = uint256(1000000 ether); + ISablier public sablier; + uint256 public bondingDiscountMultiplier = uint256(1000000 gwei); // 0.001 + uint256 public redeemStreamTime = 86400; // 1 day in seconds +@@ -77,14 +75,6 @@ contract Bonding is CollectableDust { + _sendDust(_to, _token, _amount); + } + +- function setMaxBondingPrice(uint256 _maxBondingPrice) +- external +- onlyBondingManager +- { +- maxBondingPrice = _maxBondingPrice; +- emit MaxBondingPriceUpdated(_maxBondingPrice); +- } +- + function setSablier(address _sablier) external onlyBondingManager { + sablier = ISablier(_sablier); + emit SablierUpdated(_sablier); +@@ -122,15 +112,11 @@ contract Bonding is CollectableDust { + { + require( + 1 <= _weeks && _weeks <= 520, +- "Bonding: duration must be between 1 and 250 weeks" ++ "Bonding: duration must be between 1 and 520 weeks" + ); + + _updateOracle(); +- uint256 currentPrice = currentTokenPrice(); +- require( +- currentPrice < maxBondingPrice, +- "Bonding: Current price is too high" +- ); ++ + IERC20(manager.stableSwapMetaPoolAddress()).safeTransferFrom( + msg.sender, + address(this), +@@ -176,10 +162,6 @@ contract Bonding is CollectableDust { + _sharesAmount + ); + +- // uint256 tokenAmount = formulaRedeemBonds(_sharesAmount, _currentShareValue); +- +- // console.log("_sharesAmount", _sharesAmount); +- // console.log("tokenAmount", tokenAmount); + // if (redeemStreamTime == 0) { + IERC20(manager.stableSwapMetaPoolAddress()).safeTransfer( + msg.sender, +@@ -224,10 +206,6 @@ contract Bonding is CollectableDust { + // ); + } + +- // SI totalShares = 0 priceShare = TARGET_PRICE +- // SINON priceShare = totalLP / totalShares * TARGET_PRICE +- // R = T == 0 ? 1 : LP / S +- // P = R * T + function currentShareValue() public view returns (uint256 priceShare) { + uint256 totalLP = + IERC20(manager.stableSwapMetaPoolAddress()).balanceOf( +@@ -241,17 +219,13 @@ contract Bonding is CollectableDust { + } + + function currentTokenPrice() public view returns (uint256) { +- /* uint256[2] memory prices = +- IMetaPool(manager.stableSwapMetaPoolAddress()) +- .get_price_cumulative_last(); +- return prices[0]; */ + return + ITWAPOracle(manager.twapOracleAddress()).consult( + manager.uADTokenAddress() + ); + } + +- function _bond(uint256 _amount, uint256 _id) internal { ++ function _bond(uint256 _sharesAmount, uint256 _id) internal { + uint256 _currentShareValue = currentShareValue(); + require( + _currentShareValue != 0, +@@ -261,7 +235,7 @@ contract Bonding is CollectableDust { + IBondingShare(manager.bondingShareAddress()).mint( + msg.sender, + _id, +- _amount.bonding(_currentShareValue, TARGET_PRICE), ++ _sharesAmount.bonding(_currentShareValue, TARGET_PRICE), + data + ); + } + +commit 748ee04334c0b2b4e2fa038429d0c8ac4089ad1c +Author: Alain Papazoglou +Date: Thu Apr 29 15:28:46 2021 +0200 + + fix(lint): fix lint errors + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index d253016..984ce80 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -215,11 +215,12 @@ contract Bonding is CollectableDust { + // } + } + ++ // solhint-disable-next-line no-empty-blocks + function redeemAllShares() public { +- // for each id in chained list ++ // for each id of msg.sender + // redeemShares( + // IERC20(manager.bondingShareAddress()).balanceOf(msg.sender), +- // _id ++ // id + // ); + } + + +commit 89cc3aa27e4a748d8857bc1c3fbd7efb2736437f +Author: Alain Papazoglou +Date: Mon Apr 26 18:43:27 2021 +0200 + + feat(bonding): use rounded block number as id and totalSupply() for ERC115 bonding shares + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 0da1466..d253016 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -5,7 +5,7 @@ import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; + import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; + import "./interfaces/IERC1155Ubiquity.sol"; + +-import "./UbiquityFormulas.sol"; ++import "./libs/UbiquityFormulas.sol"; + import "./UbiquityAlgorithmicDollarManager.sol"; + import "./interfaces/ISablier.sol"; + import "./interfaces/ITWAPOracle.sol"; +@@ -16,6 +16,7 @@ import "hardhat/console.sol"; + + contract Bonding is CollectableDust { + using SafeERC20 for IERC20; ++ using UbiquityFormulas for uint256; + + uint16 public id = 42; + bytes public data = ""; +@@ -28,6 +29,7 @@ contract Bonding is CollectableDust { + ISablier public sablier; + uint256 public bondingDiscountMultiplier = uint256(1000000 gwei); // 0.001 + uint256 public redeemStreamTime = 86400; // 1 day in seconds ++ uint256 public blockRonding = 100; + + event MaxBondingPriceUpdated(uint256 _maxBondingPrice); + event SablierUpdated(address _sablier); +@@ -104,6 +106,13 @@ contract Bonding is CollectableDust { + emit RedeemStreamTimeUpdated(_redeemStreamTime); + } + ++ function setBlockRonding(uint256 _blockRonding) ++ external ++ onlyBondingManager ++ { ++ blockRonding = _blockRonding; ++ } ++ + /* + Desposit function with uAD-3CRV LP tokens (stableSwapMetaPoolAddress) + */ +@@ -129,21 +138,24 @@ contract Bonding is CollectableDust { + ); + + uint256 _sharesAmount = +- UbiquityFormulas.durationMultiply( +- _lpsAmount, +- _weeks, +- bondingDiscountMultiplier +- ); +- +- // 1 WEEK = 7 * 24 * 60 * 60 = 604800 +- _id = block.timestamp + _weeks * 604800; ++ _lpsAmount.durationMultiply(_weeks, bondingDiscountMultiplier); ++ ++ // First block 2020 = 9193266 https://etherscan.io/block/9193266 ++ // First block 2021 = 11565019 https://etherscan.io/block/11565019 ++ // 2020 = 2371753 blocks = 366 days ++ // 1 week = 45361 blocks = 2371753*7/366 ++ // n = (block + duration * 45361) ++ // id = n - n % blockRonding ++ // blockRonding = 100 => 2 ending zeros ++ uint256 n = block.number + _weeks * 45361; ++ _id = n - (n % blockRonding); + + _bond(_sharesAmount, _id); + } + + function redeemShares(uint256 _sharesAmount, uint256 _id) public { + require( +- block.timestamp > _id, ++ block.number > _id, + "Bonding: Redeem not allowed before bonding time" + ); + +@@ -171,11 +183,7 @@ contract Bonding is CollectableDust { + // if (redeemStreamTime == 0) { + IERC20(manager.stableSwapMetaPoolAddress()).safeTransfer( + msg.sender, +- UbiquityFormulas.redeemBonds( +- _sharesAmount, +- _currentShareValue, +- TARGET_PRICE +- ) ++ _sharesAmount.redeemBonds(_currentShareValue, TARGET_PRICE) + ); + // } else { + // // The transaction must be processed by the Ethereum blockchain before +@@ -226,13 +234,9 @@ contract Bonding is CollectableDust { + ); + + uint256 totalShares = +- IERC1155Ubiquity(manager.bondingShareAddress()).totalSupply(id); ++ IERC1155Ubiquity(manager.bondingShareAddress()).totalSupply(); + +- priceShare = UbiquityFormulas.bondPrice( +- totalLP, +- totalShares, +- TARGET_PRICE +- ); ++ priceShare = totalLP.bondPrice(totalShares, TARGET_PRICE); + } + + function currentTokenPrice() public view returns (uint256) { +@@ -256,7 +260,7 @@ contract Bonding is CollectableDust { + IBondingShare(manager.bondingShareAddress()).mint( + msg.sender, + _id, +- UbiquityFormulas.bonding(_amount, _currentShareValue, TARGET_PRICE), ++ _amount.bonding(_currentShareValue, TARGET_PRICE), + data + ); + } + +commit 38327a260c8d38cedf3423da9251edda3beda7bd +Author: Alain Papazoglou +Date: Sat Apr 24 23:19:23 2021 +0200 + + feat(bonding): block redeem before bonding time + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index a4bde5d..0da1466 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -107,11 +107,15 @@ contract Bonding is CollectableDust { + /* + Desposit function with uAD-3CRV LP tokens (stableSwapMetaPoolAddress) + */ +- function bondTokens( +- uint256 _lpsAmount, +- uint256 _weeks, +- uint256 _block +- ) public { ++ function bondTokens(uint256 _lpsAmount, uint256 _weeks) ++ public ++ returns (uint256 _id) ++ { ++ require( ++ 1 <= _weeks && _weeks <= 520, ++ "Bonding: duration must be between 1 and 250 weeks" ++ ); ++ + _updateOracle(); + uint256 currentPrice = currentTokenPrice(); + require( +@@ -130,22 +134,33 @@ contract Bonding is CollectableDust { + _weeks, + bondingDiscountMultiplier + ); +- _bond(_sharesAmount, _block); ++ ++ // 1 WEEK = 7 * 24 * 60 * 60 = 604800 ++ _id = block.timestamp + _weeks * 604800; ++ ++ _bond(_sharesAmount, _id); + } + +- function redeemShares(uint256 _sharesAmount) public { ++ function redeemShares(uint256 _sharesAmount, uint256 _id) public { ++ require( ++ block.timestamp > _id, ++ "Bonding: Redeem not allowed before bonding time" ++ ); ++ + require( + IERC1155Ubiquity(manager.bondingShareAddress()).balanceOf( + msg.sender, +- id ++ _id + ) >= _sharesAmount, + "Bonding: Caller does not have enough shares" + ); ++ + _updateOracle(); + uint256 _currentShareValue = currentShareValue(); ++ + IBondingShare(manager.bondingShareAddress()).burn( + msg.sender, +- id, ++ _id, + _sharesAmount + ); + +@@ -193,9 +208,11 @@ contract Bonding is CollectableDust { + } + + function redeemAllShares() public { +- redeemShares( +- IERC20(manager.bondingShareAddress()).balanceOf(msg.sender) +- ); ++ // for each id in chained list ++ // redeemShares( ++ // IERC20(manager.bondingShareAddress()).balanceOf(msg.sender), ++ // _id ++ // ); + } + + // SI totalShares = 0 priceShare = TARGET_PRICE +@@ -229,16 +246,16 @@ contract Bonding is CollectableDust { + ); + } + +- function _bond(uint256 _amount, uint256 _block) internal { ++ function _bond(uint256 _amount, uint256 _id) internal { + uint256 _currentShareValue = currentShareValue(); + require( + _currentShareValue != 0, +- "Current Share Value should not be nul" ++ "Bonding: Share Value should not be nul" + ); + + IBondingShare(manager.bondingShareAddress()).mint( + msg.sender, +- _block, ++ _id, + UbiquityFormulas.bonding(_amount, _currentShareValue, TARGET_PRICE), + data + ); + +commit 862cc7b59849090e018a75bcb052f5b55e97b23d +Author: Alain Papazoglou +Date: Sat Apr 24 15:31:14 2021 +0200 + + feat(bonding): add UbiquityFormulas library + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 63fb91f..a4bde5d 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -5,17 +5,16 @@ import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; + import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; + import "./interfaces/IERC1155Ubiquity.sol"; + ++import "./UbiquityFormulas.sol"; + import "./UbiquityAlgorithmicDollarManager.sol"; + import "./interfaces/ISablier.sol"; + import "./interfaces/ITWAPOracle.sol"; + import "./interfaces/IBondingShare.sol"; + import "./utils/CollectableDust.sol"; +-import "./libs/ABDKMathQuad.sol"; ++ + import "hardhat/console.sol"; + + contract Bonding is CollectableDust { +- using ABDKMathQuad for uint256; +- using ABDKMathQuad for bytes16; + using SafeERC20 for IERC20; + + uint16 public id = 42; +@@ -108,7 +107,11 @@ contract Bonding is CollectableDust { + /* + Desposit function with uAD-3CRV LP tokens (stableSwapMetaPoolAddress) + */ +- function bondTokens(uint256 _lpsAmount, uint256 _weeks) public { ++ function bondTokens( ++ uint256 _lpsAmount, ++ uint256 _weeks, ++ uint256 _block ++ ) public { + _updateOracle(); + uint256 currentPrice = currentTokenPrice(); + require( +@@ -121,31 +124,15 @@ contract Bonding is CollectableDust { + _lpsAmount + ); + +- uint256 _sharesAmount = durationMultiply(_lpsAmount, _weeks); +- _bond(_sharesAmount); +- } +- +- // staking duration multiplier +- // _sharesAmount = (1 + 0.001 * _weeks^3/2) * _lpsAmount +- // D32 = D^3/2 +- // S = m * D32 * A + A +- function durationMultiply(uint256 _lpsAmount, uint256 _weeks) +- public +- view +- returns (uint256 _sharesAmount) +- { +- bytes16 unit = uint256(1 ether).fromUInt(); +- bytes16 D = _weeks.fromUInt(); +- bytes16 D32 = (D.mul(D).mul(D)).sqrt(); +- bytes16 m = bondingDiscountMultiplier.fromUInt().div(unit); // 0.0001 +- bytes16 A = _lpsAmount.fromUInt(); +- +- _sharesAmount = m.mul(D32).mul(A).add(A).toUInt(); ++ uint256 _sharesAmount = ++ UbiquityFormulas.durationMultiply( ++ _lpsAmount, ++ _weeks, ++ bondingDiscountMultiplier ++ ); ++ _bond(_sharesAmount, _block); + } + +- // redeemShares +- // tokenAmount = (_sharesAmount * currentShareValue()) / TARGET_PRICE; +- // tokenAmount = A * V / T + function redeemShares(uint256 _sharesAmount) public { + require( + IERC1155Ubiquity(manager.bondingShareAddress()).balanceOf( +@@ -156,24 +143,24 @@ contract Bonding is CollectableDust { + ); + _updateOracle(); + uint256 _currentShareValue = currentShareValue(); +- + IBondingShare(manager.bondingShareAddress()).burn( + msg.sender, + id, + _sharesAmount + ); + +- bytes16 A = _sharesAmount.fromUInt(); +- bytes16 V = _currentShareValue.fromUInt(); +- bytes16 T = TARGET_PRICE.fromUInt(); +- uint256 tokenAmount = A.mul(V).div(T).toUInt(); ++ // uint256 tokenAmount = formulaRedeemBonds(_sharesAmount, _currentShareValue); + + // console.log("_sharesAmount", _sharesAmount); + // console.log("tokenAmount", tokenAmount); + // if (redeemStreamTime == 0) { + IERC20(manager.stableSwapMetaPoolAddress()).safeTransfer( + msg.sender, +- tokenAmount ++ UbiquityFormulas.redeemBonds( ++ _sharesAmount, ++ _currentShareValue, ++ TARGET_PRICE ++ ) + ); + // } else { + // // The transaction must be processed by the Ethereum blockchain before +@@ -216,19 +203,19 @@ contract Bonding is CollectableDust { + // R = T == 0 ? 1 : LP / S + // P = R * T + function currentShareValue() public view returns (uint256 priceShare) { ++ uint256 totalLP = ++ IERC20(manager.stableSwapMetaPoolAddress()).balanceOf( ++ address(this) ++ ); ++ + uint256 totalShares = + IERC1155Ubiquity(manager.bondingShareAddress()).totalSupply(id); + +- bytes16 LP = +- IERC20(manager.stableSwapMetaPoolAddress()) +- .balanceOf(address(this)) +- .fromUInt(); +- +- bytes16 S = totalShares.fromUInt(); +- bytes16 R = totalShares == 0 ? uint256(1).fromUInt() : LP.div(S); +- bytes16 T = TARGET_PRICE.fromUInt(); +- +- priceShare = R.mul(T).toUInt(); ++ priceShare = UbiquityFormulas.bondPrice( ++ totalLP, ++ totalShares, ++ TARGET_PRICE ++ ); + } + + function currentTokenPrice() public view returns (uint256) { +@@ -242,27 +229,17 @@ contract Bonding is CollectableDust { + ); + } + +- // newShares = LP / currentShareValue * TARGET_PRICE +- // newShares = A / V * T +- function _bond(uint256 _amount) internal { ++ function _bond(uint256 _amount, uint256 _block) internal { + uint256 _currentShareValue = currentShareValue(); + require( + _currentShareValue != 0, + "Current Share Value should not be nul" + ); +- // console.log(_currentShareValue); +- +- // console.log(_amount); +- bytes16 A = _amount.fromUInt(); +- bytes16 V = _currentShareValue.fromUInt(); +- bytes16 T = TARGET_PRICE.fromUInt(); +- uint256 newShares = A.div(V).mul(T).toUInt(); +- // console.log(newShares); + + IBondingShare(manager.bondingShareAddress()).mint( + msg.sender, +- id, +- newShares, ++ _block, ++ UbiquityFormulas.bonding(_amount, _currentShareValue, TARGET_PRICE), + data + ); + } + +commit bd39c1d30c398b26834489e5e3bad69b0324a7b8 +Author: Alain Papazoglou +Date: Fri Apr 23 21:10:51 2021 +0200 + + feat(bondingshare): bonding and redeem simple tests (wip , no uGOV) + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 346c300..63fb91f 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -27,7 +27,7 @@ contract Bonding is CollectableDust { + // Initially set at $1,000,000 to avoid interference with growth. + uint256 public maxBondingPrice = uint256(1000000 ether); + ISablier public sablier; +- uint256 public bondingDiscountMultiplier = uint256(1000000 gwei); ++ uint256 public bondingDiscountMultiplier = uint256(1000000 gwei); // 0.001 + uint256 public redeemStreamTime = 86400; // 1 day in seconds + + event MaxBondingPriceUpdated(uint256 _maxBondingPrice); +@@ -143,8 +143,10 @@ contract Bonding is CollectableDust { + _sharesAmount = m.mul(D32).mul(A).add(A).toUInt(); + } + ++ // redeemShares ++ // tokenAmount = (_sharesAmount * currentShareValue()) / TARGET_PRICE; ++ // tokenAmount = A * V / T + function redeemShares(uint256 _sharesAmount) public { +- _updateOracle(); + require( + IERC1155Ubiquity(manager.bondingShareAddress()).balanceOf( + msg.sender, +@@ -152,41 +154,55 @@ contract Bonding is CollectableDust { + ) >= _sharesAmount, + "Bonding: Caller does not have enough shares" + ); ++ _updateOracle(); ++ uint256 _currentShareValue = currentShareValue(); ++ + IBondingShare(manager.bondingShareAddress()).burn( + msg.sender, + id, + _sharesAmount + ); +- // uint256 tokenAmount = +- // (_sharesAmount * currentShareValue()) / TARGET_PRICE; ++ ++ bytes16 A = _sharesAmount.fromUInt(); ++ bytes16 V = _currentShareValue.fromUInt(); ++ bytes16 T = TARGET_PRICE.fromUInt(); ++ uint256 tokenAmount = A.mul(V).div(T).toUInt(); ++ ++ // console.log("_sharesAmount", _sharesAmount); ++ // console.log("tokenAmount", tokenAmount); + // if (redeemStreamTime == 0) { +- // IERC20(manager.uADTokenAddress()).safeTransfer( +- // msg.sender, +- // tokenAmount +- // ); +- // } else { +- // // The transaction must be processed by the Ethereum blockchain before +- // // the start time of the stream, or otherwise the sablier contract +- // // reverts with a "start time before block.timestamp" message. +- // uint256 streamStart = block.timestamp + 60; // tx mining + 60 seconds +- // uint256 streamStop = streamStart + redeemStreamTime; +- // // The deposit must be a multiple of the difference between the stop +- // // time and the start time +- // uint256 streamDuration = streamStop - streamStart; +- // tokenAmount = (tokenAmount / streamDuration) * streamDuration; +- // IERC20(manager.uADTokenAddress()).safeApprove(address(sablier), 0); +- // IERC20(manager.uADTokenAddress()).safeApprove( +- // address(sablier), +- // tokenAmount +- // ); +- // sablier.createStream( +- // msg.sender, +- // tokenAmount, +- // manager.uADTokenAddress(), +- // streamStart, +- // streamStop +- // ); +- // } ++ IERC20(manager.stableSwapMetaPoolAddress()).safeTransfer( ++ msg.sender, ++ tokenAmount ++ ); ++ // } else { ++ // // The transaction must be processed by the Ethereum blockchain before ++ // // the start time of the stream, or otherwise the sablier contract ++ // // reverts with a "start time before block.timestamp" message. ++ // uint256 streamStart = block.timestamp + 60; // tx mining + 60 seconds ++ // uint256 streamStop = streamStart + redeemStreamTime; ++ // // The deposit must be a multiple of the difference between the stop ++ // // time and the start time ++ ++ // uint256 streamDuration = streamStop - streamStart; ++ // tokenAmount = (tokenAmount / streamDuration) * streamDuration; ++ ++ // IERC20(manager.stableSwapMetaPoolAddress()).safeApprove( ++ // address(sablier), ++ // 0 ++ // ); ++ // IERC20(manager.stableSwapMetaPoolAddress()).safeApprove( ++ // address(sablier), ++ // tokenAmount ++ // ); ++ // sablier.createStream( ++ // msg.sender, ++ // tokenAmount, ++ // manager.stableSwapMetaPoolAddress(), ++ // streamStart, ++ // streamStop ++ // ); ++ // } + } + + function redeemAllShares() public { +@@ -195,14 +211,24 @@ contract Bonding is CollectableDust { + ); + } + +- function currentShareValue() public view returns (uint256 pricePerShare) { ++ // SI totalShares = 0 priceShare = TARGET_PRICE ++ // SINON priceShare = totalLP / totalShares * TARGET_PRICE ++ // R = T == 0 ? 1 : LP / S ++ // P = R * T ++ function currentShareValue() public view returns (uint256 priceShare) { + uint256 totalShares = + IERC1155Ubiquity(manager.bondingShareAddress()).totalSupply(id); + +- pricePerShare = totalShares == 0 +- ? TARGET_PRICE +- : (IERC20(manager.uADTokenAddress()).balanceOf(address(this)) * +- TARGET_PRICE) / totalShares; ++ bytes16 LP = ++ IERC20(manager.stableSwapMetaPoolAddress()) ++ .balanceOf(address(this)) ++ .fromUInt(); ++ ++ bytes16 S = totalShares.fromUInt(); ++ bytes16 R = totalShares == 0 ? uint256(1).fromUInt() : LP.div(S); ++ bytes16 T = TARGET_PRICE.fromUInt(); ++ ++ priceShare = R.mul(T).toUInt(); + } + + function currentTokenPrice() public view returns (uint256) { +@@ -216,20 +242,27 @@ contract Bonding is CollectableDust { + ); + } + +- // numberOfShares = (amount / shareValue) * TARGET_PRICE +- // numberOfShares = A / V * T ++ // newShares = LP / currentShareValue * TARGET_PRICE ++ // newShares = A / V * T + function _bond(uint256 _amount) internal { ++ uint256 _currentShareValue = currentShareValue(); ++ require( ++ _currentShareValue != 0, ++ "Current Share Value should not be nul" ++ ); ++ // console.log(_currentShareValue); ++ + // console.log(_amount); + bytes16 A = _amount.fromUInt(); +- bytes16 V = currentShareValue().fromUInt(); ++ bytes16 V = _currentShareValue.fromUInt(); + bytes16 T = TARGET_PRICE.fromUInt(); +- uint256 numberOfShares = A.div(V).mul(T).toUInt(); +- // console.log(numberOfShares); ++ uint256 newShares = A.div(V).mul(T).toUInt(); ++ // console.log(newShares); + + IBondingShare(manager.bondingShareAddress()).mint( + msg.sender, + id, +- numberOfShares, ++ newShares, + data + ); + } + +commit 1509a0f93f3acf77430d3bac4770905d8edec477 +Author: Alain Papazoglou +Date: Thu Apr 22 21:38:21 2021 +0200 + + feat(bonding): new ERC115Ubiquity and more tests (wip) + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index bf83513..346c300 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -3,7 +3,7 @@ pragma solidity ^0.8.3; + + import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; + import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; +-import "./interfaces/IERC1155Supply.sol"; ++import "./interfaces/IERC1155Ubiquity.sol"; + + import "./UbiquityAlgorithmicDollarManager.sol"; + import "./interfaces/ISablier.sol"; +@@ -11,6 +11,7 @@ import "./interfaces/ITWAPOracle.sol"; + import "./interfaces/IBondingShare.sol"; + import "./utils/CollectableDust.sol"; + import "./libs/ABDKMathQuad.sol"; ++import "hardhat/console.sol"; + + contract Bonding is CollectableDust { + using ABDKMathQuad for uint256; +@@ -107,7 +108,7 @@ contract Bonding is CollectableDust { + /* + Desposit function with uAD-3CRV LP tokens (stableSwapMetaPoolAddress) + */ +- function deposit(uint256 _lpsAmount, uint8 _weeks) public { ++ function bondTokens(uint256 _lpsAmount, uint256 _weeks) public { + _updateOracle(); + uint256 currentPrice = currentTokenPrice(); + require( +@@ -120,31 +121,32 @@ contract Bonding is CollectableDust { + _lpsAmount + ); + +- uint256 _sharesAmount = durationMultiplier(_lpsAmount, _weeks); ++ uint256 _sharesAmount = durationMultiply(_lpsAmount, _weeks); + _bond(_sharesAmount); + } + + // staking duration multiplier +- // sharesAmount = M * lpsAmount +- // M = 0.001 * D3/2 +- function durationMultiplier(uint256 _lpsAmount, uint256 _weeks) ++ // _sharesAmount = (1 + 0.001 * _weeks^3/2) * _lpsAmount ++ // D32 = D^3/2 ++ // S = m * D32 * A + A ++ function durationMultiply(uint256 _lpsAmount, uint256 _weeks) + public + view + returns (uint256 _sharesAmount) + { + bytes16 unit = uint256(1 ether).fromUInt(); +- bytes16 A = _lpsAmount.fromUInt(); +- bytes16 m = bondingDiscountMultiplier.fromUInt().div(unit); // 0.0001 + bytes16 D = _weeks.fromUInt(); +- bytes16 D32 = (D.mul(D).mul(D)).sqrt().mul(A); ++ bytes16 D32 = (D.mul(D).mul(D)).sqrt(); ++ bytes16 m = bondingDiscountMultiplier.fromUInt().div(unit); // 0.0001 ++ bytes16 A = _lpsAmount.fromUInt(); + +- _sharesAmount = A.mul(m).mul(D32).toUInt(); ++ _sharesAmount = m.mul(D32).mul(A).add(A).toUInt(); + } + + function redeemShares(uint256 _sharesAmount) public { + _updateOracle(); + require( +- IERC1155Supply(manager.bondingShareAddress()).balanceOf( ++ IERC1155Ubiquity(manager.bondingShareAddress()).balanceOf( + msg.sender, + id + ) >= _sharesAmount, +@@ -155,36 +157,36 @@ contract Bonding is CollectableDust { + id, + _sharesAmount + ); +- uint256 tokenAmount = +- (_sharesAmount * currentShareValue()) / TARGET_PRICE; +- if (redeemStreamTime == 0) { +- IERC20(manager.uADTokenAddress()).safeTransfer( +- msg.sender, +- tokenAmount +- ); +- } else { +- // The transaction must be processed by the Ethereum blockchain before +- // the start time of the stream, or otherwise the sablier contract +- // reverts with a "start time before block.timestamp" message. +- uint256 streamStart = block.timestamp + 60; // tx mining + 60 seconds +- uint256 streamStop = streamStart + redeemStreamTime; +- // The deposit must be a multiple of the difference between the stop +- // time and the start time +- uint256 streamDuration = streamStop - streamStart; +- tokenAmount = (tokenAmount / streamDuration) * streamDuration; +- IERC20(manager.uADTokenAddress()).safeApprove(address(sablier), 0); +- IERC20(manager.uADTokenAddress()).safeApprove( +- address(sablier), +- tokenAmount +- ); +- sablier.createStream( +- msg.sender, +- tokenAmount, +- manager.uADTokenAddress(), +- streamStart, +- streamStop +- ); +- } ++ // uint256 tokenAmount = ++ // (_sharesAmount * currentShareValue()) / TARGET_PRICE; ++ // if (redeemStreamTime == 0) { ++ // IERC20(manager.uADTokenAddress()).safeTransfer( ++ // msg.sender, ++ // tokenAmount ++ // ); ++ // } else { ++ // // The transaction must be processed by the Ethereum blockchain before ++ // // the start time of the stream, or otherwise the sablier contract ++ // // reverts with a "start time before block.timestamp" message. ++ // uint256 streamStart = block.timestamp + 60; // tx mining + 60 seconds ++ // uint256 streamStop = streamStart + redeemStreamTime; ++ // // The deposit must be a multiple of the difference between the stop ++ // // time and the start time ++ // uint256 streamDuration = streamStop - streamStart; ++ // tokenAmount = (tokenAmount / streamDuration) * streamDuration; ++ // IERC20(manager.uADTokenAddress()).safeApprove(address(sablier), 0); ++ // IERC20(manager.uADTokenAddress()).safeApprove( ++ // address(sablier), ++ // tokenAmount ++ // ); ++ // sablier.createStream( ++ // msg.sender, ++ // tokenAmount, ++ // manager.uADTokenAddress(), ++ // streamStart, ++ // streamStop ++ // ); ++ // } + } + + function redeemAllShares() public { +@@ -195,7 +197,7 @@ contract Bonding is CollectableDust { + + function currentShareValue() public view returns (uint256 pricePerShare) { + uint256 totalShares = +- IERC1155Supply(manager.bondingShareAddress()).totalSupply(id); ++ IERC1155Ubiquity(manager.bondingShareAddress()).totalSupply(id); + + pricePerShare = totalShares == 0 + ? TARGET_PRICE +@@ -214,9 +216,15 @@ contract Bonding is CollectableDust { + ); + } + ++ // numberOfShares = (amount / shareValue) * TARGET_PRICE ++ // numberOfShares = A / V * T + function _bond(uint256 _amount) internal { +- uint256 shareValue = currentShareValue(); +- uint256 numberOfShares = (_amount / shareValue) * TARGET_PRICE; ++ // console.log(_amount); ++ bytes16 A = _amount.fromUInt(); ++ bytes16 V = currentShareValue().fromUInt(); ++ bytes16 T = TARGET_PRICE.fromUInt(); ++ uint256 numberOfShares = A.div(V).mul(T).toUInt(); ++ // console.log(numberOfShares); + + IBondingShare(manager.bondingShareAddress()).mint( + msg.sender, + +commit c77294bc8c24f2c014b70c607f04c7f7ccbb21bd +Author: Alain Papazoglou +Date: Wed Apr 21 22:07:46 2021 +0200 + + test(bondingshares): add UseCase1 + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index d92ae02..bf83513 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -105,52 +105,40 @@ contract Bonding is CollectableDust { + } + + /* +- Desposit function (new version of bondTokens) +- use uAD-3CRV LP tokens (not uAD tokens) ++ Desposit function with uAD-3CRV LP tokens (stableSwapMetaPoolAddress) + */ +- function deposit(uint256 _amount) public { +- // _updateOracle(); +- // uint256 currentPrice = currentTokenPrice(); +- // require( +- // currentPrice < maxBondingPrice, +- // "Bonding: Current price is too high" +- // ); +- // IERC20(manager.uADTokenAddress()).safeTransferFrom( +- // msg.sender, +- // address(this), +- // _amount +- // ); +- // _bond(_amount, currentPrice); ++ function deposit(uint256 _lpsAmount, uint8 _weeks) public { ++ _updateOracle(); ++ uint256 currentPrice = currentTokenPrice(); ++ require( ++ currentPrice < maxBondingPrice, ++ "Bonding: Current price is too high" ++ ); ++ IERC20(manager.stableSwapMetaPoolAddress()).safeTransferFrom( ++ msg.sender, ++ address(this), ++ _lpsAmount ++ ); ++ ++ uint256 _sharesAmount = durationMultiplier(_lpsAmount, _weeks); ++ _bond(_sharesAmount); + } + + // staking duration multiplier ++ // sharesAmount = M * lpsAmount + // M = 0.001 * D3/2 +- function durationMultiplier(uint256 _weeks) ++ function durationMultiplier(uint256 _lpsAmount, uint256 _weeks) + public + view +- returns (uint256 M) ++ returns (uint256 _sharesAmount) + { + bytes16 unit = uint256(1 ether).fromUInt(); ++ bytes16 A = _lpsAmount.fromUInt(); + bytes16 m = bondingDiscountMultiplier.fromUInt().div(unit); // 0.0001 + bytes16 D = _weeks.fromUInt(); +- bytes16 D32 = (D.mul(D).mul(D)).sqrt(); ++ bytes16 D32 = (D.mul(D).mul(D)).sqrt().mul(A); + +- M = m.mul(D32).mul(unit).toUInt(); +- } +- +- function bondTokens(uint256 _amount) public { +- _updateOracle(); +- uint256 currentPrice = currentTokenPrice(); +- require( +- currentPrice < maxBondingPrice, +- "Bonding: Current price is too high" +- ); +- IERC20(manager.uADTokenAddress()).safeTransferFrom( +- msg.sender, +- address(this), +- _amount +- ); +- _bond(_amount, currentPrice); ++ _sharesAmount = A.mul(m).mul(D32).toUInt(); + } + + function redeemShares(uint256 _sharesAmount) public { +@@ -226,18 +214,10 @@ contract Bonding is CollectableDust { + ); + } + +- function _bond(uint256 _amount, uint256 currentPrice) internal { ++ function _bond(uint256 _amount) internal { + uint256 shareValue = currentShareValue(); + uint256 numberOfShares = (_amount / shareValue) * TARGET_PRICE; + +- if (bondingDiscountMultiplier != 0) { +- uint256 bonus = +- ((TARGET_PRICE - currentPrice) * +- numberOfShares * +- bondingDiscountMultiplier) / (TARGET_PRICE * TARGET_PRICE); +- numberOfShares = numberOfShares + bonus; +- } +- + IBondingShare(manager.bondingShareAddress()).mint( + msg.sender, + id, + +commit 33f563948226fd1c39ffd148251eba5fc8ebf62d +Author: Alain Papazoglou +Date: Wed Apr 14 17:39:09 2021 +0200 + + feat(bondingshare): durationMultiplier function and tests + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index d8af781..d92ae02 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -10,8 +10,11 @@ import "./interfaces/ISablier.sol"; + import "./interfaces/ITWAPOracle.sol"; + import "./interfaces/IBondingShare.sol"; + import "./utils/CollectableDust.sol"; ++import "./libs/ABDKMathQuad.sol"; + + contract Bonding is CollectableDust { ++ using ABDKMathQuad for uint256; ++ using ABDKMathQuad for bytes16; + using SafeERC20 for IERC20; + + uint16 public id = 42; +@@ -19,11 +22,11 @@ contract Bonding is CollectableDust { + + UbiquityAlgorithmicDollarManager public manager; + +- uint256 public constant TARGET_PRICE = 1 ether; // 3Crv has 18 decimals ++ uint256 public constant TARGET_PRICE = uint256(1 ether); // 3Crv has 18 decimals + // Initially set at $1,000,000 to avoid interference with growth. +- uint256 public maxBondingPrice = uint256(1 ether) * 1000000; ++ uint256 public maxBondingPrice = uint256(1000000 ether); + ISablier public sablier; +- uint256 public bondingDiscountMultiplier = 0; ++ uint256 public bondingDiscountMultiplier = uint256(1000000 gwei); + uint256 public redeemStreamTime = 86400; // 1 day in seconds + + event MaxBondingPriceUpdated(uint256 _maxBondingPrice); +@@ -101,6 +104,40 @@ contract Bonding is CollectableDust { + emit RedeemStreamTimeUpdated(_redeemStreamTime); + } + ++ /* ++ Desposit function (new version of bondTokens) ++ use uAD-3CRV LP tokens (not uAD tokens) ++ */ ++ function deposit(uint256 _amount) public { ++ // _updateOracle(); ++ // uint256 currentPrice = currentTokenPrice(); ++ // require( ++ // currentPrice < maxBondingPrice, ++ // "Bonding: Current price is too high" ++ // ); ++ // IERC20(manager.uADTokenAddress()).safeTransferFrom( ++ // msg.sender, ++ // address(this), ++ // _amount ++ // ); ++ // _bond(_amount, currentPrice); ++ } ++ ++ // staking duration multiplier ++ // M = 0.001 * D3/2 ++ function durationMultiplier(uint256 _weeks) ++ public ++ view ++ returns (uint256 M) ++ { ++ bytes16 unit = uint256(1 ether).fromUInt(); ++ bytes16 m = bondingDiscountMultiplier.fromUInt().div(unit); // 0.0001 ++ bytes16 D = _weeks.fromUInt(); ++ bytes16 D32 = (D.mul(D).mul(D)).sqrt(); ++ ++ M = m.mul(D32).mul(unit).toUInt(); ++ } ++ + function bondTokens(uint256 _amount) public { + _updateOracle(); + uint256 currentPrice = currentTokenPrice(); + +commit 216da82d2fc42c4dcc9290e31651d703e6ccb77d +Author: Alain Papazoglou +Date: Tue Apr 13 18:27:13 2021 +0200 + + fix(test): contract not initialized in 2nd test, must redo + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index c6d0ea4..d8af781 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -118,22 +118,20 @@ contract Bonding is CollectableDust { + + function redeemShares(uint256 _sharesAmount) public { + _updateOracle(); +- + require( +- IERC20(manager.bondingShareAddress()).balanceOf(msg.sender) >= +- _sharesAmount, ++ IERC1155Supply(manager.bondingShareAddress()).balanceOf( ++ msg.sender, ++ id ++ ) >= _sharesAmount, + "Bonding: Caller does not have enough shares" + ); +- + IBondingShare(manager.bondingShareAddress()).burn( + msg.sender, + id, + _sharesAmount + ); +- + uint256 tokenAmount = + (_sharesAmount * currentShareValue()) / TARGET_PRICE; +- + if (redeemStreamTime == 0) { + IERC20(manager.uADTokenAddress()).safeTransfer( + msg.sender, +@@ -144,19 +142,16 @@ contract Bonding is CollectableDust { + // the start time of the stream, or otherwise the sablier contract + // reverts with a "start time before block.timestamp" message. + uint256 streamStart = block.timestamp + 60; // tx mining + 60 seconds +- + uint256 streamStop = streamStart + redeemStreamTime; + // The deposit must be a multiple of the difference between the stop + // time and the start time + uint256 streamDuration = streamStop - streamStart; + tokenAmount = (tokenAmount / streamDuration) * streamDuration; +- + IERC20(manager.uADTokenAddress()).safeApprove(address(sablier), 0); + IERC20(manager.uADTokenAddress()).safeApprove( + address(sablier), + tokenAmount + ); +- + sablier.createStream( + msg.sender, + tokenAmount, + +commit 5e977c93926c3db1b3391a04ced69a44bb22ecb2 +Author: Benjamin +Date: Tue Apr 13 13:07:05 2021 +0200 + + fix(lint): corrections + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 7fa4c99..c6d0ea4 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -14,8 +14,8 @@ import "./utils/CollectableDust.sol"; + contract Bonding is CollectableDust { + using SafeERC20 for IERC20; + +- uint16 id = 42; +- bytes data = ""; ++ uint16 public id = 42; ++ bytes public data = ""; + + UbiquityAlgorithmicDollarManager public manager; + + +commit a87ef331c951ceda49615507773879a3fb2e0c38 +Author: Alain Papazoglou +Date: Mon Apr 12 21:26:55 2021 +0200 + + feat(bondingshare): test bondingShare pass with new ERC1155Supply + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 8e78fd3..7fa4c99 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -3,6 +3,7 @@ pragma solidity ^0.8.3; + + import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; + import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; ++import "./interfaces/IERC1155Supply.sol"; + + import "./UbiquityAlgorithmicDollarManager.sol"; + import "./interfaces/ISablier.sol"; +@@ -174,7 +175,7 @@ contract Bonding is CollectableDust { + + function currentShareValue() public view returns (uint256 pricePerShare) { + uint256 totalShares = +- IERC20(manager.bondingShareAddress()).totalSupply(); ++ IERC1155Supply(manager.bondingShareAddress()).totalSupply(id); + + pricePerShare = totalShares == 0 + ? TARGET_PRICE + +commit 9189c3410b7552a3cc76ff5f38cdea8eb7feeb7c +Author: Alain Papazoglou +Date: Fri Apr 9 21:41:39 2021 +0200 + + feat(bondingshare): change bondingShare from ERC20 to ERC1155 WIP + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 4833cc0..8e78fd3 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -13,6 +13,9 @@ import "./utils/CollectableDust.sol"; + contract Bonding is CollectableDust { + using SafeERC20 for IERC20; + ++ uint16 id = 42; ++ bytes data = ""; ++ + UbiquityAlgorithmicDollarManager public manager; + + uint256 public constant TARGET_PRICE = 1 ether; // 3Crv has 18 decimals +@@ -121,8 +124,9 @@ contract Bonding is CollectableDust { + "Bonding: Caller does not have enough shares" + ); + +- IBondingShare(manager.bondingShareAddress()).burnFrom( ++ IBondingShare(manager.bondingShareAddress()).burn( + msg.sender, ++ id, + _sharesAmount + ); + +@@ -203,7 +207,9 @@ contract Bonding is CollectableDust { + + IBondingShare(manager.bondingShareAddress()).mint( + msg.sender, +- numberOfShares ++ id, ++ numberOfShares, ++ data + ); + } + + +commit bbb3c6e2c26105a43af5e539916db1788c4c50d0 +Author: Benjamin +Date: Mon Apr 12 19:07:17 2021 +0200 + + feat(debtManager): add tests + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 4020b35..4833cc0 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -1,4 +1,4 @@ +-// SPDX-License-Identifier: Apache-2.0 ++// SPDX-License-Identifier: MIT + pragma solidity ^0.8.3; + + import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; + +commit 0374c88e8f2feb68d274a4cd779abb945f8834ae +Author: Benjamin +Date: Tue Mar 30 11:32:10 2021 +0200 + + chore(dep): upgrade + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 69c2446..4020b35 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -1,9 +1,8 @@ + // SPDX-License-Identifier: Apache-2.0 +-pragma solidity ^0.7.0; ++pragma solidity ^0.8.3; + +-import "@openzeppelin/contracts/math/SafeMath.sol"; + import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; +-import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; ++import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; + + import "./UbiquityAlgorithmicDollarManager.sol"; + import "./interfaces/ISablier.sol"; +@@ -12,14 +11,13 @@ import "./interfaces/IBondingShare.sol"; + import "./utils/CollectableDust.sol"; + + contract Bonding is CollectableDust { +- using SafeMath for uint256; + using SafeERC20 for IERC20; + + UbiquityAlgorithmicDollarManager public manager; + + uint256 public constant TARGET_PRICE = 1 ether; // 3Crv has 18 decimals + // Initially set at $1,000,000 to avoid interference with growth. +- uint256 public maxBondingPrice = uint256(1 ether).mul(1000000); ++ uint256 public maxBondingPrice = uint256(1 ether) * 1000000; + ISablier public sablier; + uint256 public bondingDiscountMultiplier = 0; + uint256 public redeemStreamTime = 86400; // 1 day in seconds +@@ -129,7 +127,7 @@ contract Bonding is CollectableDust { + ); + + uint256 tokenAmount = +- _sharesAmount.mul(currentShareValue()).div(TARGET_PRICE); ++ (_sharesAmount * currentShareValue()) / TARGET_PRICE; + + if (redeemStreamTime == 0) { + IERC20(manager.uADTokenAddress()).safeTransfer( +@@ -140,13 +138,13 @@ contract Bonding is CollectableDust { + // The transaction must be processed by the Ethereum blockchain before + // the start time of the stream, or otherwise the sablier contract + // reverts with a "start time before block.timestamp" message. +- uint256 streamStart = block.timestamp.add(60); // tx mining + 60 seconds ++ uint256 streamStart = block.timestamp + 60; // tx mining + 60 seconds + +- uint256 streamStop = streamStart.add(redeemStreamTime); ++ uint256 streamStop = streamStart + redeemStreamTime; + // The deposit must be a multiple of the difference between the stop + // time and the start time +- uint256 streamDuration = streamStop.sub(streamStart); +- tokenAmount = tokenAmount.div(streamDuration).mul(streamDuration); ++ uint256 streamDuration = streamStop - streamStart; ++ tokenAmount = (tokenAmount / streamDuration) * streamDuration; + + IERC20(manager.uADTokenAddress()).safeApprove(address(sablier), 0); + IERC20(manager.uADTokenAddress()).safeApprove( +@@ -176,10 +174,8 @@ contract Bonding is CollectableDust { + + pricePerShare = totalShares == 0 + ? TARGET_PRICE +- : IERC20(manager.uADTokenAddress()) +- .balanceOf(address(this)) +- .mul(TARGET_PRICE) +- .div(totalShares); ++ : (IERC20(manager.uADTokenAddress()).balanceOf(address(this)) * ++ TARGET_PRICE) / totalShares; + } + + function currentTokenPrice() public view returns (uint256) { +@@ -195,15 +191,14 @@ contract Bonding is CollectableDust { + + function _bond(uint256 _amount, uint256 currentPrice) internal { + uint256 shareValue = currentShareValue(); +- uint256 numberOfShares = _amount.div(shareValue).mul(TARGET_PRICE); ++ uint256 numberOfShares = (_amount / shareValue) * TARGET_PRICE; + + if (bondingDiscountMultiplier != 0) { + uint256 bonus = +- (TARGET_PRICE.sub(currentPrice)) +- .mul(numberOfShares) +- .mul(bondingDiscountMultiplier) +- .div(TARGET_PRICE.mul(TARGET_PRICE)); +- numberOfShares = numberOfShares.add(bonus); ++ ((TARGET_PRICE - currentPrice) * ++ numberOfShares * ++ bondingDiscountMultiplier) / (TARGET_PRICE * TARGET_PRICE); ++ numberOfShares = numberOfShares + bonus; + } + + IBondingShare(manager.bondingShareAddress()).mint( + +commit 954c31ea19e7f6ac14ae4b5c4f66b9ee95ffd6fd +Author: Benjamin +Date: Fri Apr 2 19:59:10 2021 +0200 + + feat(tests): add numerous test + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 8b8eb26..69c2446 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -183,10 +183,13 @@ contract Bonding is CollectableDust { + } + + function currentTokenPrice() public view returns (uint256) { ++ /* uint256[2] memory prices = ++ IMetaPool(manager.stableSwapMetaPoolAddress()) ++ .get_price_cumulative_last(); ++ return prices[0]; */ + return + ITWAPOracle(manager.twapOracleAddress()).consult( +- manager.uADTokenAddress(), +- TARGET_PRICE ++ manager.uADTokenAddress() + ); + } + + +commit 7027ba1fcc8ead2f8755b60de601acdc0cfc6774 +Author: Benjamin +Date: Fri Mar 26 19:30:23 2021 +0100 + + chore(lint): improve linting + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index dd94ba2..8b8eb26 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -24,6 +24,11 @@ contract Bonding is CollectableDust { + uint256 public bondingDiscountMultiplier = 0; + uint256 public redeemStreamTime = 86400; // 1 day in seconds + ++ event MaxBondingPriceUpdated(uint256 _maxBondingPrice); ++ event SablierUpdated(address _sablier); ++ event BondingDiscountMultiplierUpdated(uint256 _bondingDiscountMultiplier); ++ event RedeemStreamTimeUpdated(uint256 _redeemStreamTime); ++ + modifier onlyBondingManager() { + require( + manager.hasRole(manager.BONDING_MANAGER_ROLE(), msg.sender), +@@ -32,16 +37,14 @@ contract Bonding is CollectableDust { + _; + } + +- event MaxBondingPriceUpdated(uint256 _maxBondingPrice); +- event SablierUpdated(address _sablier); +- event BondingDiscountMultiplierUpdated(uint256 _bondingDiscountMultiplier); +- event RedeemStreamTimeUpdated(uint256 _redeemStreamTime); +- + constructor(address _manager, address _sablier) CollectableDust() { + manager = UbiquityAlgorithmicDollarManager(_manager); + sablier = ISablier(_sablier); + } + ++ // solhint-disable-next-line no-empty-blocks ++ receive() external payable {} ++ + /// Collectable Dust + function addProtocolToken(address _token) + external +@@ -67,9 +70,6 @@ contract Bonding is CollectableDust { + _sendDust(_to, _token, _amount); + } + +- // solhint-disable-next-line no-empty-blocks +- receive() external payable {} +- + function setMaxBondingPrice(uint256 _maxBondingPrice) + external + onlyBondingManager +@@ -99,25 +99,6 @@ contract Bonding is CollectableDust { + emit RedeemStreamTimeUpdated(_redeemStreamTime); + } + +- function _bond(uint256 _amount, uint256 currentPrice) internal { +- uint256 shareValue = currentShareValue(); +- uint256 numberOfShares = _amount.div(shareValue).mul(TARGET_PRICE); +- +- if (bondingDiscountMultiplier != 0) { +- uint256 bonus = +- (TARGET_PRICE.sub(currentPrice)) +- .mul(numberOfShares) +- .mul(bondingDiscountMultiplier) +- .div(TARGET_PRICE.mul(TARGET_PRICE)); +- numberOfShares = numberOfShares.add(bonus); +- } +- +- IBondingShare(manager.bondingShareAddress()).mint( +- msg.sender, +- numberOfShares +- ); +- } +- + function bondTokens(uint256 _amount) public { + _updateOracle(); + uint256 currentPrice = currentTokenPrice(); +@@ -189,10 +170,6 @@ contract Bonding is CollectableDust { + ); + } + +- function _updateOracle() internal { +- ITWAPOracle(manager.twapOracleAddress()).update(); +- } +- + function currentShareValue() public view returns (uint256 pricePerShare) { + uint256 totalShares = + IERC20(manager.bondingShareAddress()).totalSupply(); +@@ -212,4 +189,27 @@ contract Bonding is CollectableDust { + TARGET_PRICE + ); + } ++ ++ function _bond(uint256 _amount, uint256 currentPrice) internal { ++ uint256 shareValue = currentShareValue(); ++ uint256 numberOfShares = _amount.div(shareValue).mul(TARGET_PRICE); ++ ++ if (bondingDiscountMultiplier != 0) { ++ uint256 bonus = ++ (TARGET_PRICE.sub(currentPrice)) ++ .mul(numberOfShares) ++ .mul(bondingDiscountMultiplier) ++ .div(TARGET_PRICE.mul(TARGET_PRICE)); ++ numberOfShares = numberOfShares.add(bonus); ++ } ++ ++ IBondingShare(manager.bondingShareAddress()).mint( ++ msg.sender, ++ numberOfShares ++ ); ++ } ++ ++ function _updateOracle() internal { ++ ITWAPOracle(manager.twapOracleAddress()).update(); ++ } + } + +commit 737cb0c2e181722edb0b9d2bdc2e80160e67825b +Author: kamiebisu +Date: Tue Feb 2 20:55:29 2021 -0300 + + Change the initial redeemStreamTime to one day + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 9a16df3..dd94ba2 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -22,7 +22,7 @@ contract Bonding is CollectableDust { + uint256 public maxBondingPrice = uint256(1 ether).mul(1000000); + ISablier public sablier; + uint256 public bondingDiscountMultiplier = 0; +- uint256 public redeemStreamTime = 604800; // 1 week in seconds ++ uint256 public redeemStreamTime = 86400; // 1 day in seconds + + modifier onlyBondingManager() { + require( + +commit de06778ef7dd48880bd56862892b55585826b98c +Author: kamiebisu +Date: Tue Feb 2 19:00:35 2021 -0300 + + Fix calculation of the amount of tokens to be streamed + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index e9b9a79..9a16df3 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -164,9 +164,8 @@ contract Bonding is CollectableDust { + uint256 streamStop = streamStart.add(redeemStreamTime); + // The deposit must be a multiple of the difference between the stop + // time and the start time +- streamStop = streamStop.add( +- tokenAmount % (streamStop.sub(streamStart)) +- ); ++ uint256 streamDuration = streamStop.sub(streamStart); ++ tokenAmount = tokenAmount.div(streamDuration).mul(streamDuration); + + IERC20(manager.uADTokenAddress()).safeApprove(address(sablier), 0); + IERC20(manager.uADTokenAddress()).safeApprove( + +commit 6240dd9398f80d0d8277a7b9e4065f03ddd79e63 +Author: kamiebisu +Date: Tue Feb 2 02:09:42 2021 -0300 + + Approve the Sablier contract to spend Bonding's funds + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 56e37b2..e9b9a79 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -168,6 +168,12 @@ contract Bonding is CollectableDust { + tokenAmount % (streamStop.sub(streamStart)) + ); + ++ IERC20(manager.uADTokenAddress()).safeApprove(address(sablier), 0); ++ IERC20(manager.uADTokenAddress()).safeApprove( ++ address(sablier), ++ tokenAmount ++ ); ++ + sablier.createStream( + msg.sender, + tokenAmount, + +commit 5486c0f9e07061cf93b0ab0d17b57845b56ccc58 +Author: kamiebisu +Date: Tue Feb 2 02:06:55 2021 -0300 + + Fix how the oracle is consulted + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 356cb95..56e37b2 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -201,6 +201,10 @@ contract Bonding is CollectableDust { + } + + function currentTokenPrice() public view returns (uint256) { +- return ITWAPOracle(manager.twapOracleAddress()).consult(TARGET_PRICE); ++ return ++ ITWAPOracle(manager.twapOracleAddress()).consult( ++ manager.uADTokenAddress(), ++ TARGET_PRICE ++ ); + } + } + +commit 2e96eb9784b21e90102d8cbd950f49985b7c74fb +Author: kamiebisu +Date: Thu Jan 28 18:11:01 2021 -0300 + + Rename from Stabilitas to Ubiquity Algorithmic Dollar (uAD) + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 9e94307..356cb95 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -5,9 +5,9 @@ import "@openzeppelin/contracts/math/SafeMath.sol"; + import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; + import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; + +-import "./StabilitasConfig.sol"; ++import "./UbiquityAlgorithmicDollarManager.sol"; + import "./interfaces/ISablier.sol"; +-import "./interfaces/IUniswapOracle.sol"; ++import "./interfaces/ITWAPOracle.sol"; + import "./interfaces/IBondingShare.sol"; + import "./utils/CollectableDust.sol"; + +@@ -15,18 +15,18 @@ contract Bonding is CollectableDust { + using SafeMath for uint256; + using SafeERC20 for IERC20; + +- StabilitasConfig public config; ++ UbiquityAlgorithmicDollarManager public manager; + +- uint256 public constant TARGET_PRICE = 1000000; // USDC has 6 decimals ++ uint256 public constant TARGET_PRICE = 1 ether; // 3Crv has 18 decimals + // Initially set at $1,000,000 to avoid interference with growth. +- uint256 public maxBondingPrice = 1000000000000000000000000; ++ uint256 public maxBondingPrice = uint256(1 ether).mul(1000000); + ISablier public sablier; + uint256 public bondingDiscountMultiplier = 0; + uint256 public redeemStreamTime = 604800; // 1 week in seconds + + modifier onlyBondingManager() { + require( +- config.hasRole(config.BONDING_MANAGER_ROLE(), msg.sender), ++ manager.hasRole(manager.BONDING_MANAGER_ROLE(), msg.sender), + "Caller is not a bonding manager" + ); + _; +@@ -37,8 +37,8 @@ contract Bonding is CollectableDust { + event BondingDiscountMultiplierUpdated(uint256 _bondingDiscountMultiplier); + event RedeemStreamTimeUpdated(uint256 _redeemStreamTime); + +- constructor(address _config, address _sablier) CollectableDust() { +- config = StabilitasConfig(_config); ++ constructor(address _manager, address _sablier) CollectableDust() { ++ manager = UbiquityAlgorithmicDollarManager(_manager); + sablier = ISablier(_sablier); + } + +@@ -112,7 +112,7 @@ contract Bonding is CollectableDust { + numberOfShares = numberOfShares.add(bonus); + } + +- IBondingShare(config.bondingShareAddress()).mint( ++ IBondingShare(manager.bondingShareAddress()).mint( + msg.sender, + numberOfShares + ); +@@ -125,7 +125,7 @@ contract Bonding is CollectableDust { + currentPrice < maxBondingPrice, + "Bonding: Current price is too high" + ); +- IERC20(config.stabilitasTokenAddress()).safeTransferFrom( ++ IERC20(manager.uADTokenAddress()).safeTransferFrom( + msg.sender, + address(this), + _amount +@@ -137,12 +137,12 @@ contract Bonding is CollectableDust { + _updateOracle(); + + require( +- IERC20(config.bondingShareAddress()).balanceOf(msg.sender) >= ++ IERC20(manager.bondingShareAddress()).balanceOf(msg.sender) >= + _sharesAmount, + "Bonding: Caller does not have enough shares" + ); + +- IBondingShare(config.bondingShareAddress()).burnFrom( ++ IBondingShare(manager.bondingShareAddress()).burnFrom( + msg.sender, + _sharesAmount + ); +@@ -151,7 +151,7 @@ contract Bonding is CollectableDust { + _sharesAmount.mul(currentShareValue()).div(TARGET_PRICE); + + if (redeemStreamTime == 0) { +- IERC20(config.stabilitasTokenAddress()).safeTransfer( ++ IERC20(manager.uADTokenAddress()).safeTransfer( + msg.sender, + tokenAmount + ); +@@ -171,7 +171,7 @@ contract Bonding is CollectableDust { + sablier.createStream( + msg.sender, + tokenAmount, +- config.stabilitasTokenAddress(), ++ manager.uADTokenAddress(), + streamStart, + streamStop + ); +@@ -180,35 +180,27 @@ contract Bonding is CollectableDust { + + function redeemAllShares() public { + redeemShares( +- IERC20(config.bondingShareAddress()).balanceOf(msg.sender) ++ IERC20(manager.bondingShareAddress()).balanceOf(msg.sender) + ); + } + + function _updateOracle() internal { +- IUniswapOracle(config.twapOracleAddress()).update( +- config.stabilitasTokenAddress(), +- config.comparisonTokenAddress() +- ); ++ ITWAPOracle(manager.twapOracleAddress()).update(); + } + + function currentShareValue() public view returns (uint256 pricePerShare) { + uint256 totalShares = +- IERC20(config.bondingShareAddress()).totalSupply(); ++ IERC20(manager.bondingShareAddress()).totalSupply(); + + pricePerShare = totalShares == 0 + ? TARGET_PRICE +- : IERC20(config.stabilitasTokenAddress()) ++ : IERC20(manager.uADTokenAddress()) + .balanceOf(address(this)) + .mul(TARGET_PRICE) + .div(totalShares); + } + + function currentTokenPrice() public view returns (uint256) { +- return +- IUniswapOracle(config.twapOracleAddress()).consult( +- config.stabilitasTokenAddress(), +- TARGET_PRICE, +- config.comparisonTokenAddress() +- ); ++ return ITWAPOracle(manager.twapOracleAddress()).consult(TARGET_PRICE); + } + } + +commit 4a39ca467584577fb178081b5c6f419c6a82648c +Author: kamiebisu +Date: Thu Jan 28 14:03:45 2021 -0300 + + Implement a TWAP oracle for StableSwap meta pools + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 58930ba..9e94307 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -159,7 +159,6 @@ contract Bonding is CollectableDust { + // The transaction must be processed by the Ethereum blockchain before + // the start time of the stream, or otherwise the sablier contract + // reverts with a "start time before block.timestamp" message. +- // solhint-disable-next-line not-rely-on-time + uint256 streamStart = block.timestamp.add(60); // tx mining + 60 seconds + + uint256 streamStop = streamStart.add(redeemStreamTime); + +commit 1b0d19416c67272d1379cc80b4bec3f3f6ee0327 +Author: kamiebisu +Date: Sun Jan 24 01:25:09 2021 -0300 + + Implement the functionality to redeem bonding shares + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index f4848f3..58930ba 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -133,8 +133,56 @@ contract Bonding is CollectableDust { + _bond(_amount, currentPrice); + } + +- function redeemShares() public { ++ function redeemShares(uint256 _sharesAmount) public { + _updateOracle(); ++ ++ require( ++ IERC20(config.bondingShareAddress()).balanceOf(msg.sender) >= ++ _sharesAmount, ++ "Bonding: Caller does not have enough shares" ++ ); ++ ++ IBondingShare(config.bondingShareAddress()).burnFrom( ++ msg.sender, ++ _sharesAmount ++ ); ++ ++ uint256 tokenAmount = ++ _sharesAmount.mul(currentShareValue()).div(TARGET_PRICE); ++ ++ if (redeemStreamTime == 0) { ++ IERC20(config.stabilitasTokenAddress()).safeTransfer( ++ msg.sender, ++ tokenAmount ++ ); ++ } else { ++ // The transaction must be processed by the Ethereum blockchain before ++ // the start time of the stream, or otherwise the sablier contract ++ // reverts with a "start time before block.timestamp" message. ++ // solhint-disable-next-line not-rely-on-time ++ uint256 streamStart = block.timestamp.add(60); // tx mining + 60 seconds ++ ++ uint256 streamStop = streamStart.add(redeemStreamTime); ++ // The deposit must be a multiple of the difference between the stop ++ // time and the start time ++ streamStop = streamStop.add( ++ tokenAmount % (streamStop.sub(streamStart)) ++ ); ++ ++ sablier.createStream( ++ msg.sender, ++ tokenAmount, ++ config.stabilitasTokenAddress(), ++ streamStart, ++ streamStop ++ ); ++ } ++ } ++ ++ function redeemAllShares() public { ++ redeemShares( ++ IERC20(config.bondingShareAddress()).balanceOf(msg.sender) ++ ); + } + + function _updateOracle() internal { + +commit 1a165fe4f889d5e2f3ca54c107393498a6659c36 +Author: kamiebisu +Date: Sun Jan 24 00:23:11 2021 -0300 + + Abstract updating the oracle, following the DRY principle + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index effabcd..f4848f3 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -119,10 +119,7 @@ contract Bonding is CollectableDust { + } + + function bondTokens(uint256 _amount) public { +- IUniswapOracle(config.twapOracleAddress()).update( +- config.stabilitasTokenAddress(), +- config.comparisonTokenAddress() +- ); ++ _updateOracle(); + uint256 currentPrice = currentTokenPrice(); + require( + currentPrice < maxBondingPrice, +@@ -136,6 +133,17 @@ contract Bonding is CollectableDust { + _bond(_amount, currentPrice); + } + ++ function redeemShares() public { ++ _updateOracle(); ++ } ++ ++ function _updateOracle() internal { ++ IUniswapOracle(config.twapOracleAddress()).update( ++ config.stabilitasTokenAddress(), ++ config.comparisonTokenAddress() ++ ); ++ } ++ + function currentShareValue() public view returns (uint256 pricePerShare) { + uint256 totalShares = + IERC20(config.bondingShareAddress()).totalSupply(); + +commit 09aa1272ad13ad53adbea428f5219c3e86b9def9 +Author: kamiebisu +Date: Sun Jan 24 00:08:35 2021 -0300 + + Add oracle consulting abstraction and gas optimization + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index a8f197f..effabcd 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -99,17 +99,11 @@ contract Bonding is CollectableDust { + emit RedeemStreamTimeUpdated(_redeemStreamTime); + } + +- function _bond(uint256 _amount) internal { ++ function _bond(uint256 _amount, uint256 currentPrice) internal { + uint256 shareValue = currentShareValue(); + uint256 numberOfShares = _amount.div(shareValue).mul(TARGET_PRICE); + + if (bondingDiscountMultiplier != 0) { +- uint256 currentPrice = +- IUniswapOracle(config.twapOracleAddress()).consult( +- config.stabilitasTokenAddress(), +- TARGET_PRICE, +- config.comparisonTokenAddress() +- ); + uint256 bonus = + (TARGET_PRICE.sub(currentPrice)) + .mul(numberOfShares) +@@ -129,12 +123,7 @@ contract Bonding is CollectableDust { + config.stabilitasTokenAddress(), + config.comparisonTokenAddress() + ); +- uint256 currentPrice = +- IUniswapOracle(config.twapOracleAddress()).consult( +- config.stabilitasTokenAddress(), +- TARGET_PRICE, +- config.comparisonTokenAddress() +- ); ++ uint256 currentPrice = currentTokenPrice(); + require( + currentPrice < maxBondingPrice, + "Bonding: Current price is too high" +@@ -144,7 +133,7 @@ contract Bonding is CollectableDust { + address(this), + _amount + ); +- _bond(_amount); ++ _bond(_amount, currentPrice); + } + + function currentShareValue() public view returns (uint256 pricePerShare) { +@@ -158,4 +147,13 @@ contract Bonding is CollectableDust { + .mul(TARGET_PRICE) + .div(totalShares); + } ++ ++ function currentTokenPrice() public view returns (uint256) { ++ return ++ IUniswapOracle(config.twapOracleAddress()).consult( ++ config.stabilitasTokenAddress(), ++ TARGET_PRICE, ++ config.comparisonTokenAddress() ++ ); ++ } + } + +commit ce8c722b4d4ef8a55cf656ab03174ac6adb9004e +Author: kamiebisu +Date: Sun Jan 24 00:04:10 2021 -0300 + + Rename function + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 5932858..a8f197f 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -100,7 +100,7 @@ contract Bonding is CollectableDust { + } + + function _bond(uint256 _amount) internal { +- uint256 shareValue = getCurrentShareValue(); ++ uint256 shareValue = currentShareValue(); + uint256 numberOfShares = _amount.div(shareValue).mul(TARGET_PRICE); + + if (bondingDiscountMultiplier != 0) { +@@ -147,11 +147,7 @@ contract Bonding is CollectableDust { + _bond(_amount); + } + +- function getCurrentShareValue() +- public +- view +- returns (uint256 pricePerShare) +- { ++ function currentShareValue() public view returns (uint256 pricePerShare) { + uint256 totalShares = + IERC20(config.bondingShareAddress()).totalSupply(); + + +commit 72da1b2bc82cab61f2371135e89e7d56a4a9f9f4 +Author: kamiebisu +Date: Sat Jan 23 23:32:39 2021 -0300 + + Implement the bUDD ERC20 token and finish 'bondTokens' + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 7a945cf..5932858 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -2,13 +2,13 @@ + pragma solidity ^0.7.0; + + import "@openzeppelin/contracts/math/SafeMath.sol"; +-import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; + import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; + import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; + + import "./StabilitasConfig.sol"; + import "./interfaces/ISablier.sol"; + import "./interfaces/IUniswapOracle.sol"; ++import "./interfaces/IBondingShare.sol"; + import "./utils/CollectableDust.sol"; + + contract Bonding is CollectableDust { +@@ -22,7 +22,6 @@ contract Bonding is CollectableDust { + uint256 public maxBondingPrice = 1000000000000000000000000; + ISablier public sablier; + uint256 public bondingDiscountMultiplier = 0; +- uint256 public rewardsBalance; + uint256 public redeemStreamTime = 604800; // 1 week in seconds + + modifier onlyBondingManager() { +@@ -100,6 +99,31 @@ contract Bonding is CollectableDust { + emit RedeemStreamTimeUpdated(_redeemStreamTime); + } + ++ function _bond(uint256 _amount) internal { ++ uint256 shareValue = getCurrentShareValue(); ++ uint256 numberOfShares = _amount.div(shareValue).mul(TARGET_PRICE); ++ ++ if (bondingDiscountMultiplier != 0) { ++ uint256 currentPrice = ++ IUniswapOracle(config.twapOracleAddress()).consult( ++ config.stabilitasTokenAddress(), ++ TARGET_PRICE, ++ config.comparisonTokenAddress() ++ ); ++ uint256 bonus = ++ (TARGET_PRICE.sub(currentPrice)) ++ .mul(numberOfShares) ++ .mul(bondingDiscountMultiplier) ++ .div(TARGET_PRICE.mul(TARGET_PRICE)); ++ numberOfShares = numberOfShares.add(bonus); ++ } ++ ++ IBondingShare(config.bondingShareAddress()).mint( ++ msg.sender, ++ numberOfShares ++ ); ++ } ++ + function bondTokens(uint256 _amount) public { + IUniswapOracle(config.twapOracleAddress()).update( + config.stabilitasTokenAddress(), +@@ -120,5 +144,22 @@ contract Bonding is CollectableDust { + address(this), + _amount + ); ++ _bond(_amount); ++ } ++ ++ function getCurrentShareValue() ++ public ++ view ++ returns (uint256 pricePerShare) ++ { ++ uint256 totalShares = ++ IERC20(config.bondingShareAddress()).totalSupply(); ++ ++ pricePerShare = totalShares == 0 ++ ? TARGET_PRICE ++ : IERC20(config.stabilitasTokenAddress()) ++ .balanceOf(address(this)) ++ .mul(TARGET_PRICE) ++ .div(totalShares); + } + } + +commit 29950033a857eeb5488244716c152417410c047f +Author: kamiebisu +Date: Sat Jan 23 19:30:13 2021 -0300 + + Add a BondingShare ERC20 token + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index fd6bcb0..7a945cf 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -2,6 +2,7 @@ + pragma solidity ^0.7.0; + + import "@openzeppelin/contracts/math/SafeMath.sol"; ++import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; + import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; + import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; + +@@ -119,6 +120,5 @@ contract Bonding is CollectableDust { + address(this), + _amount + ); +- // _bond(_amount); + } + } + +commit 944247d9e6b1b50ed12ffd503a2242196781a1bd +Author: kamiebisu +Date: Sat Jan 23 05:04:31 2021 -0300 + + Implement the bondTokens function + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 8714c02..fd6bcb0 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -7,10 +7,12 @@ import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; + + import "./StabilitasConfig.sol"; + import "./interfaces/ISablier.sol"; ++import "./interfaces/IUniswapOracle.sol"; + import "./utils/CollectableDust.sol"; + + contract Bonding is CollectableDust { + using SafeMath for uint256; ++ using SafeERC20 for IERC20; + + StabilitasConfig public config; + +@@ -96,4 +98,27 @@ contract Bonding is CollectableDust { + redeemStreamTime = _redeemStreamTime; + emit RedeemStreamTimeUpdated(_redeemStreamTime); + } ++ ++ function bondTokens(uint256 _amount) public { ++ IUniswapOracle(config.twapOracleAddress()).update( ++ config.stabilitasTokenAddress(), ++ config.comparisonTokenAddress() ++ ); ++ uint256 currentPrice = ++ IUniswapOracle(config.twapOracleAddress()).consult( ++ config.stabilitasTokenAddress(), ++ TARGET_PRICE, ++ config.comparisonTokenAddress() ++ ); ++ require( ++ currentPrice < maxBondingPrice, ++ "Bonding: Current price is too high" ++ ); ++ IERC20(config.stabilitasTokenAddress()).safeTransferFrom( ++ msg.sender, ++ address(this), ++ _amount ++ ); ++ // _bond(_amount); ++ } + } + +commit c5e8e53f9bde2a27c15cb67bc39775c216db31f3 +Author: kamiebisu +Date: Sat Jan 23 02:02:20 2021 -0300 + + Implement and test new setters + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 2d37ed7..8714c02 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -17,8 +17,8 @@ contract Bonding is CollectableDust { + uint256 public constant TARGET_PRICE = 1000000; // USDC has 6 decimals + // Initially set at $1,000,000 to avoid interference with growth. + uint256 public maxBondingPrice = 1000000000000000000000000; +- uint256 public bondingDiscountMultiplier = 0; + ISablier public sablier; ++ uint256 public bondingDiscountMultiplier = 0; + uint256 public rewardsBalance; + uint256 public redeemStreamTime = 604800; // 1 week in seconds + +@@ -30,6 +30,11 @@ contract Bonding is CollectableDust { + _; + } + ++ event MaxBondingPriceUpdated(uint256 _maxBondingPrice); ++ event SablierUpdated(address _sablier); ++ event BondingDiscountMultiplierUpdated(uint256 _bondingDiscountMultiplier); ++ event RedeemStreamTimeUpdated(uint256 _redeemStreamTime); ++ + constructor(address _config, address _sablier) CollectableDust() { + config = StabilitasConfig(_config); + sablier = ISablier(_sablier); +@@ -63,8 +68,17 @@ contract Bonding is CollectableDust { + // solhint-disable-next-line no-empty-blocks + receive() external payable {} + ++ function setMaxBondingPrice(uint256 _maxBondingPrice) ++ external ++ onlyBondingManager ++ { ++ maxBondingPrice = _maxBondingPrice; ++ emit MaxBondingPriceUpdated(_maxBondingPrice); ++ } ++ + function setSablier(address _sablier) external onlyBondingManager { + sablier = ISablier(_sablier); ++ emit SablierUpdated(_sablier); + } + + function setBondingDiscountMultiplier(uint256 _bondingDiscountMultiplier) +@@ -72,5 +86,14 @@ contract Bonding is CollectableDust { + onlyBondingManager + { + bondingDiscountMultiplier = _bondingDiscountMultiplier; ++ emit BondingDiscountMultiplierUpdated(_bondingDiscountMultiplier); ++ } ++ ++ function setRedeemStreamTime(uint256 _redeemStreamTime) ++ external ++ onlyBondingManager ++ { ++ redeemStreamTime = _redeemStreamTime; ++ emit RedeemStreamTimeUpdated(_redeemStreamTime); + } + } + +commit 0fdd43774b59556ed6f4a97b80dc83a43d2ede8a +Author: kamiebisu +Date: Sat Jan 23 00:49:07 2021 -0300 + + Simplify access control with modifiers and move state + + Move bonding-related state variables back to the Bonding + contract + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index b1a8f51..2d37ed7 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -4,11 +4,10 @@ pragma solidity ^0.7.0; + import "@openzeppelin/contracts/math/SafeMath.sol"; + import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; + import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; +-import "@openzeppelin/contracts/access/AccessControl.sol"; + +-import "./utils/CollectableDust.sol"; +-import "./interfaces/ISablier.sol"; + import "./StabilitasConfig.sol"; ++import "./interfaces/ISablier.sol"; ++import "./utils/CollectableDust.sol"; + + contract Bonding is CollectableDust { + using SafeMath for uint256; +@@ -16,31 +15,40 @@ contract Bonding is CollectableDust { + StabilitasConfig public config; + + uint256 public constant TARGET_PRICE = 1000000; // USDC has 6 decimals +- ISablier public sablier; + // Initially set at $1,000,000 to avoid interference with growth. + uint256 public maxBondingPrice = 1000000000000000000000000; + uint256 public bondingDiscountMultiplier = 0; ++ ISablier public sablier; + uint256 public rewardsBalance; + uint256 public redeemStreamTime = 604800; // 1 week in seconds + +- constructor(address _config) CollectableDust() { +- config = StabilitasConfig(_config); +- } +- +- /// Collectable Dust +- function addProtocolToken(address _token) external override { ++ modifier onlyBondingManager() { + require( + config.hasRole(config.BONDING_MANAGER_ROLE(), msg.sender), + "Caller is not a bonding manager" + ); ++ _; ++ } ++ ++ constructor(address _config, address _sablier) CollectableDust() { ++ config = StabilitasConfig(_config); ++ sablier = ISablier(_sablier); ++ } ++ ++ /// Collectable Dust ++ function addProtocolToken(address _token) ++ external ++ override ++ onlyBondingManager ++ { + _addProtocolToken(_token); + } + +- function removeProtocolToken(address _token) external override { +- require( +- config.hasRole(config.BONDING_MANAGER_ROLE(), msg.sender), +- "Caller is not a bonding manager" +- ); ++ function removeProtocolToken(address _token) ++ external ++ override ++ onlyBondingManager ++ { + _removeProtocolToken(_token); + } + +@@ -48,14 +56,21 @@ contract Bonding is CollectableDust { + address _to, + address _token, + uint256 _amount +- ) external override { +- require( +- config.hasRole(config.BONDING_MANAGER_ROLE(), msg.sender), +- "Caller is not a bonding manager" +- ); ++ ) external override onlyBondingManager { + _sendDust(_to, _token, _amount); + } + + // solhint-disable-next-line no-empty-blocks + receive() external payable {} ++ ++ function setSablier(address _sablier) external onlyBondingManager { ++ sablier = ISablier(_sablier); ++ } ++ ++ function setBondingDiscountMultiplier(uint256 _bondingDiscountMultiplier) ++ external ++ onlyBondingManager ++ { ++ bondingDiscountMultiplier = _bondingDiscountMultiplier; ++ } + } + +commit 8ad7aa778e3e724dc4a0553fdd6597954a13cde3 +Author: kamiebisu +Date: Fri Jan 22 22:20:46 2021 -0300 + + Store protocol-wide paramaters and handle access control + + Use the StabilitasConfig contract and OpenZeppelin Contracts' + AccessControl to do that + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 3b670eb..b1a8f51 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -1,32 +1,46 @@ + // SPDX-License-Identifier: Apache-2.0 + pragma solidity ^0.7.0; + +-import "@openzeppelin/contracts/access/Ownable.sol"; + import "@openzeppelin/contracts/math/SafeMath.sol"; ++import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; ++import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; ++import "@openzeppelin/contracts/access/AccessControl.sol"; + + import "./utils/CollectableDust.sol"; + import "./interfaces/ISablier.sol"; ++import "./StabilitasConfig.sol"; + +-contract Bonding is Ownable, CollectableDust { ++contract Bonding is CollectableDust { + using SafeMath for uint256; + +- ISablier public sablier; +- +- constructor(address _sablier) CollectableDust() { +- sablier = ISablier(_sablier); +- } ++ StabilitasConfig public config; + +- /// Setters +- function setSablier(address _sablier) public onlyOwner { +- sablier = ISablier(_sablier); ++ uint256 public constant TARGET_PRICE = 1000000; // USDC has 6 decimals ++ ISablier public sablier; ++ // Initially set at $1,000,000 to avoid interference with growth. ++ uint256 public maxBondingPrice = 1000000000000000000000000; ++ uint256 public bondingDiscountMultiplier = 0; ++ uint256 public rewardsBalance; ++ uint256 public redeemStreamTime = 604800; // 1 week in seconds ++ ++ constructor(address _config) CollectableDust() { ++ config = StabilitasConfig(_config); + } + + /// Collectable Dust +- function addProtocolToken(address _token) external override onlyOwner { ++ function addProtocolToken(address _token) external override { ++ require( ++ config.hasRole(config.BONDING_MANAGER_ROLE(), msg.sender), ++ "Caller is not a bonding manager" ++ ); + _addProtocolToken(_token); + } + +- function removeProtocolToken(address _token) external override onlyOwner { ++ function removeProtocolToken(address _token) external override { ++ require( ++ config.hasRole(config.BONDING_MANAGER_ROLE(), msg.sender), ++ "Caller is not a bonding manager" ++ ); + _removeProtocolToken(_token); + } + +@@ -34,7 +48,11 @@ contract Bonding is Ownable, CollectableDust { + address _to, + address _token, + uint256 _amount +- ) external override onlyOwner { ++ ) external override { ++ require( ++ config.hasRole(config.BONDING_MANAGER_ROLE(), msg.sender), ++ "Caller is not a bonding manager" ++ ); + _sendDust(_to, _token, _amount); + } + + +commit 1d43fc172500055060b342a2e24c060ce5f09062 +Author: kamiebisu +Date: Fri Jan 22 15:59:11 2021 -0300 + + Finish implementing and testing the CollectableDust utility + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 1ad0103..3b670eb 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -22,6 +22,14 @@ contract Bonding is Ownable, CollectableDust { + } + + /// Collectable Dust ++ function addProtocolToken(address _token) external override onlyOwner { ++ _addProtocolToken(_token); ++ } ++ ++ function removeProtocolToken(address _token) external override onlyOwner { ++ _removeProtocolToken(_token); ++ } ++ + function sendDust( + address _to, + address _token, +@@ -29,4 +37,7 @@ contract Bonding is Ownable, CollectableDust { + ) external override onlyOwner { + _sendDust(_to, _token, _amount); + } ++ ++ // solhint-disable-next-line no-empty-blocks ++ receive() external payable {} + } + +commit 440876a9a7acdf027631c784acf2bf2c2ab6acb3 +Author: kamiebisu +Date: Fri Jan 22 14:59:51 2021 -0300 + + Add CollectableDust functionality + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +index 947aaa2..1ad0103 100644 +--- a/contracts/Bonding.sol ++++ b/contracts/Bonding.sol +@@ -4,14 +4,15 @@ pragma solidity ^0.7.0; + import "@openzeppelin/contracts/access/Ownable.sol"; + import "@openzeppelin/contracts/math/SafeMath.sol"; + ++import "./utils/CollectableDust.sol"; + import "./interfaces/ISablier.sol"; + +-contract Bonding is Ownable { ++contract Bonding is Ownable, CollectableDust { + using SafeMath for uint256; + + ISablier public sablier; + +- constructor(address _sablier) { ++ constructor(address _sablier) CollectableDust() { + sablier = ISablier(_sablier); + } + +@@ -19,4 +20,13 @@ contract Bonding is Ownable { + function setSablier(address _sablier) public onlyOwner { + sablier = ISablier(_sablier); + } ++ ++ /// Collectable Dust ++ function sendDust( ++ address _to, ++ address _token, ++ uint256 _amount ++ ) external override onlyOwner { ++ _sendDust(_to, _token, _amount); ++ } + } + +commit 9e2acf0ce2a1e8e1f9a44829a357e9b8b2a4dff4 +Author: kamiebisu +Date: Wed Jan 20 21:06:24 2021 -0300 + + Add initial Bonding contract + +diff --git a/contracts/Bonding.sol b/contracts/Bonding.sol +new file mode 100644 +index 0000000..947aaa2 +--- /dev/null ++++ b/contracts/Bonding.sol +@@ -0,0 +1,22 @@ ++// SPDX-License-Identifier: Apache-2.0 ++pragma solidity ^0.7.0; ++ ++import "@openzeppelin/contracts/access/Ownable.sol"; ++import "@openzeppelin/contracts/math/SafeMath.sol"; ++ ++import "./interfaces/ISablier.sol"; ++ ++contract Bonding is Ownable { ++ using SafeMath for uint256; ++ ++ ISablier public sablier; ++ ++ constructor(address _sablier) { ++ sablier = ISablier(_sablier); ++ } ++ ++ /// Setters ++ function setSablier(address _sablier) public onlyOwner { ++ sablier = ISablier(_sablier); ++ } ++} diff --git a/V1.sol b/V1.sol new file mode 100644 index 0000000..430cbc1 --- /dev/null +++ b/V1.sol @@ -0,0 +1,1675 @@ +commit 552695c33894275c430d9e5faee0a619b5359b25 +Author: Benjamin +Date: Tue Jul 20 16:18:39 2021 +0200 + + chore(deploy) update deps and deploy scripts + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index d62d0d5..22985eb 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -92,8 +92,8 @@ contract MasterChef { + UserInfo storage user = userInfo[sender]; + _updatePool(); + if (user.amount > 0) { +- uint256 pending = +- ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; ++ uint256 pending = ((user.amount * pool.accuGOVPerShare) / 1e12) - ++ user.rewardDebt; + _safeUGOVTransfer(sender, pending); + } + user.amount = user.amount + _amount; +@@ -109,8 +109,8 @@ contract MasterChef { + UserInfo storage user = userInfo[sender]; + require(user.amount >= _amount, "MC: amount too high"); + _updatePool(); +- uint256 pending = +- ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; ++ uint256 pending = ((user.amount * pool.accuGOVPerShare) / 1e12) - ++ user.rewardDebt; + _safeUGOVTransfer(sender, pending); + user.amount = user.amount - _amount; + user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; +@@ -123,8 +123,8 @@ contract MasterChef { + function getRewards() external returns (uint256) { + UserInfo storage user = userInfo[msg.sender]; + _updatePool(); +- uint256 pending = +- ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; ++ uint256 pending = ((user.amount * pool.accuGOVPerShare) / 1e12) - ++ user.rewardDebt; + _safeUGOVTransfer(msg.sender, pending); + user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; + return pending; +@@ -134,8 +134,8 @@ contract MasterChef { + function pendingUGOV(address _user) external view returns (uint256) { + UserInfo storage user = userInfo[_user]; + uint256 accuGOVPerShare = pool.accuGOVPerShare; +- uint256 lpSupply = +- IERC1155Ubiquity(manager.bondingShareAddress()).totalSupply(); ++ uint256 lpSupply = IERC1155Ubiquity(manager.bondingShareAddress()) ++ .totalSupply(); + + if (block.number > pool.lastRewardBlock && lpSupply != 0) { + uint256 multiplier = _getMultiplier(); +@@ -177,8 +177,8 @@ contract MasterChef { + return; + } + _updateUGOVMultiplier(); +- uint256 lpSupply = +- IERC1155Ubiquity(manager.bondingShareAddress()).totalSupply(); ++ uint256 lpSupply = IERC1155Ubiquity(manager.bondingShareAddress()) ++ .totalSupply(); + if (lpSupply == 0) { + pool.lastRewardBlock = block.number; + return; + +commit 9553d36cbe9c7f00f5e80bfedb5ff705bb3e7196 +Author: Benjamin +Date: Sun Jun 27 10:16:52 2021 +0200 + + feat(v2) add v2 + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index ae3a5de..d62d0d5 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -96,11 +96,6 @@ contract MasterChef { + ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; + _safeUGOVTransfer(sender, pending); + } +- /* pool.lpToken.safeTransferFrom( +- address(msg.sender), +- address(this), +- _amount +- ); */ + user.amount = user.amount + _amount; + user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; + emit Deposit(sender, _amount); +@@ -119,7 +114,6 @@ contract MasterChef { + _safeUGOVTransfer(sender, pending); + user.amount = user.amount - _amount; + user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; +- /* pool.lpToken.safeTransfer(msg.sender, _amount); */ + emit Withdraw(sender, _amount); + } + +@@ -185,10 +179,6 @@ contract MasterChef { + _updateUGOVMultiplier(); + uint256 lpSupply = + IERC1155Ubiquity(manager.bondingShareAddress()).totalSupply(); +- /* IERC20(manager.stableSwapMetaPoolAddress()).balanceOf( +- manager.bondingContractAddress() +- ); */ +- + if (lpSupply == 0) { + pool.lastRewardBlock = block.number; + return; + +commit d59a14bd2ecab4b3d2e98eea5f36be00ab843716 +Author: アレクサンダー U B I Q U I T Y +Date: Fri Jun 4 15:03:01 2021 -0400 + + because travis made me rush this commit + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index 3c02c17..ae3a5de 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -195,12 +195,12 @@ contract MasterChef { + } + uint256 multiplier = _getMultiplier(); + uint256 uGOVReward = (multiplier * uGOVPerBlock) / 1e18; +- IERC20Ubiquity(manager.uGOVTokenAddress()).mint( ++ IERC20Ubiquity(manager.governanceTokenAddress()).mint( + address(this), + uGOVReward + ); + // mint another 20% for the treasury +- IERC20Ubiquity(manager.uGOVTokenAddress()).mint( ++ IERC20Ubiquity(manager.governanceTokenAddress()).mint( + manager.treasuryAddress(), + uGOVReward / 5 + ); +@@ -213,7 +213,7 @@ contract MasterChef { + // Safe uGOV transfer function, just in case if rounding + // error causes pool to not have enough uGOVs. + function _safeUGOVTransfer(address _to, uint256 _amount) internal { +- IERC20Ubiquity uGOV = IERC20Ubiquity(manager.uGOVTokenAddress()); ++ IERC20Ubiquity uGOV = IERC20Ubiquity(manager.governanceTokenAddress()); + uint256 uGOVBal = uGOV.balanceOf(address(this)); + if (_amount > uGOVBal) { + uGOV.safeTransfer(_to, uGOVBal); +@@ -229,7 +229,7 @@ contract MasterChef { + function _getTwapPrice() internal view returns (uint256) { + return + ITWAPOracle(manager.twapOracleAddress()).consult( +- manager.uADTokenAddress() ++ manager.dollarTokenAddress() + ); + } + } + +commit d824b69a7eafc6530b28029f6a6be5a9468146d0 +Author: Benjamin +Date: Wed May 19 12:21:09 2021 +0200 + + feat(ugov): mint 20% for treasury + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index df91f0a..3c02c17 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -199,6 +199,11 @@ contract MasterChef { + address(this), + uGOVReward + ); ++ // mint another 20% for the treasury ++ IERC20Ubiquity(manager.uGOVTokenAddress()).mint( ++ manager.treasuryAddress(), ++ uGOVReward / 5 ++ ); + pool.accuGOVPerShare = + pool.accuGOVPerShare + + ((uGOVReward * 1e12) / lpSupply); + +commit a4f3a291ac26f9c4104398ac2ff33139c7c1c6a1 +Author: Benjamin +Date: Fri May 7 16:18:30 2021 +0200 + + feat(ugov): add ugov incetive for bonding participants + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index f3a0069..df91f0a 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -84,38 +84,73 @@ contract MasterChef { + minPriceDiffToUpdateMultiplier = _minPriceDiffToUpdateMultiplier; + } + ++ // Deposit LP tokens to MasterChef for uGOV allocation. ++ function deposit(uint256 _amount, address sender) ++ external ++ onlyBondingContract ++ { ++ UserInfo storage user = userInfo[sender]; ++ _updatePool(); ++ if (user.amount > 0) { ++ uint256 pending = ++ ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; ++ _safeUGOVTransfer(sender, pending); ++ } ++ /* pool.lpToken.safeTransferFrom( ++ address(msg.sender), ++ address(this), ++ _amount ++ ); */ ++ user.amount = user.amount + _amount; ++ user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; ++ emit Deposit(sender, _amount); ++ } ++ ++ // Withdraw LP tokens from MasterChef. ++ function withdraw(uint256 _amount, address sender) ++ external ++ onlyBondingContract ++ { ++ UserInfo storage user = userInfo[sender]; ++ require(user.amount >= _amount, "MC: amount too high"); ++ _updatePool(); ++ uint256 pending = ++ ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; ++ _safeUGOVTransfer(sender, pending); ++ user.amount = user.amount - _amount; ++ user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; ++ /* pool.lpToken.safeTransfer(msg.sender, _amount); */ ++ emit Withdraw(sender, _amount); ++ } ++ ++ /// @dev get pending uGOV rewards from MasterChef. ++ /// @return amount of pending rewards transfered to msg.sender ++ /// @notice only send pending rewards ++ function getRewards() external returns (uint256) { ++ UserInfo storage user = userInfo[msg.sender]; ++ _updatePool(); ++ uint256 pending = ++ ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; ++ _safeUGOVTransfer(msg.sender, pending); ++ user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; ++ return pending; ++ } ++ + // View function to see pending uGOVs on frontend. + function pendingUGOV(address _user) external view returns (uint256) { + UserInfo storage user = userInfo[_user]; + uint256 accuGOVPerShare = pool.accuGOVPerShare; + uint256 lpSupply = + IERC1155Ubiquity(manager.bondingShareAddress()).totalSupply(); +- /* IERC20(manager.stableSwapMetaPoolAddress()).balanceOf( +- manager.bondingContractAddress() +- ); */ +- +- // console.log("accuGOVPerShare", accuGOVPerShare); +- // console.log("lpSupply", lpSupply); + + if (block.number > pool.lastRewardBlock && lpSupply != 0) { + uint256 multiplier = _getMultiplier(); + + uint256 uGOVReward = (multiplier * uGOVPerBlock) / 1e18; +- console.log( +- "## PENDING NEW MULTIPLIER multiplier:%s uGOVReward:%s", +- multiplier, +- uGOVReward +- ); + accuGOVPerShare = + accuGOVPerShare + + ((uGOVReward * 1e12) / lpSupply); +- +- // console.log("multiplier", multiplier); +- // console.log("uGOVReward", uGOVReward); + } +- // console.log("user.amount", user.amount); +- // console.log("user.rewardDebt", user.rewardDebt); +- // console.log("accuGOVPerShare", accuGOVPerShare); + + return (user.amount * accuGOVPerShare) / 1e12 - user.rewardDebt; + } +@@ -139,10 +174,6 @@ contract MasterChef { + uGOVmultiplier = IUbiquityFormulas(manager.formulasAddress()) + .ugovMultiply(uGOVmultiplier, currentPrice); + lastPrice = currentPrice; +- console.log( +- "## MULTIPLIER UPDATED uGOVmultiplier:%s", +- uGOVmultiplier +- ); + } + } + +@@ -164,11 +195,6 @@ contract MasterChef { + } + uint256 multiplier = _getMultiplier(); + uint256 uGOVReward = (multiplier * uGOVPerBlock) / 1e18; +- console.log( +- "## _updatePool WE ARE MINTING uGOVReward:%s uGOVPerBlock:%s", +- uGOVReward, +- uGOVPerBlock +- ); + IERC20Ubiquity(manager.uGOVTokenAddress()).mint( + address(this), + uGOVReward +@@ -179,64 +205,19 @@ contract MasterChef { + pool.lastRewardBlock = block.number; + } + +- // Deposit LP tokens to MasterChef for uGOV allocation. +- function deposit(uint256 _amount, address sender) +- external +- onlyBondingContract +- { +- UserInfo storage user = userInfo[sender]; +- _updatePool(); +- if (user.amount > 0) { +- uint256 pending = +- ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; +- _safeUGOVTransfer(sender, pending); ++ // Safe uGOV transfer function, just in case if rounding ++ // error causes pool to not have enough uGOVs. ++ function _safeUGOVTransfer(address _to, uint256 _amount) internal { ++ IERC20Ubiquity uGOV = IERC20Ubiquity(manager.uGOVTokenAddress()); ++ uint256 uGOVBal = uGOV.balanceOf(address(this)); ++ if (_amount > uGOVBal) { ++ uGOV.safeTransfer(_to, uGOVBal); ++ } else { ++ uGOV.safeTransfer(_to, _amount); + } +- /* pool.lpToken.safeTransferFrom( +- address(msg.sender), +- address(this), +- _amount +- ); */ +- user.amount = user.amount + _amount; +- user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; +- emit Deposit(sender, _amount); +- } +- +- // Withdraw LP tokens from MasterChef. +- function withdraw(uint256 _amount, address sender) +- external +- onlyBondingContract +- { +- UserInfo storage user = userInfo[sender]; +- require(user.amount >= _amount, "MC: amount too high"); +- _updatePool(); +- uint256 pending = +- ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; +- _safeUGOVTransfer(sender, pending); +- user.amount = user.amount - _amount; +- user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; +- /* pool.lpToken.safeTransfer(msg.sender, _amount); */ +- emit Withdraw(sender, _amount); +- } +- +- /// @dev get pending uGOV rewards from MasterChef. +- /// @return amount of pending rewards transfered to msg.sender +- /// @notice only send pending rewards +- function getRewards() external returns (uint256) { +- UserInfo storage user = userInfo[msg.sender]; +- _updatePool(); +- uint256 pending = +- ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; +- _safeUGOVTransfer(msg.sender, pending); +- user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; +- return pending; + } + + function _getMultiplier() internal view returns (uint256) { +- console.log( +- "## _getMultiplier numberOfBlockB:%s uGOVmultiplier:%s", +- block.number - pool.lastRewardBlock, +- uGOVmultiplier +- ); + return (block.number - pool.lastRewardBlock) * uGOVmultiplier; + } + +@@ -246,24 +227,4 @@ contract MasterChef { + manager.uADTokenAddress() + ); + } +- +- // Safe uGOV transfer function, just in case if rounding +- // error causes pool to not have enough uGOVs. +- function _safeUGOVTransfer(address _to, uint256 _amount) internal { +- IERC20Ubiquity uGOV = IERC20Ubiquity(manager.uGOVTokenAddress()); +- uint256 uGOVBal = uGOV.balanceOf(address(this)); +- +- console.log( +- "## _safeUGOVTransfer uGOVBal:%s _amount:%s uGOVmultiplier:%s ", +- uGOVBal, +- _amount, +- uGOVmultiplier +- ); +- if (_amount > uGOVBal) { +- uGOV.safeTransfer(_to, uGOVBal); +- } else { +- console.log("## ON TRASNFERE AMOUNT"); +- uGOV.safeTransfer(_to, _amount); +- } +- } + } + +commit 647ef3fd5d44f3da527426bf1c57286f3d94de80 +Author: Benjamin +Date: Wed May 5 23:09:18 2021 +0200 + + feat(masterchef): refacto + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index 9e0ac99..f3a0069 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -5,6 +5,7 @@ import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; + import "./interfaces/IERC20Ubiquity.sol"; + import "./UbiquityAlgorithmicDollarManager.sol"; + import "./interfaces/ITWAPOracle.sol"; ++import "./interfaces/IERC1155Ubiquity.sol"; + import "./interfaces/IUbiquityFormulas.sol"; + + contract MasterChef { +@@ -28,7 +29,6 @@ contract MasterChef { + } + // Info of each pool. + struct PoolInfo { +- IERC20 lpToken; // Address of uAD-3CRV LP token contract. + uint256 lastRewardBlock; // Last block number that uGOVs distribution occurs. + uint256 accuGOVPerShare; // Accumulated uGOVs per share, times 1e12. See below. + } +@@ -51,21 +51,24 @@ contract MasterChef { + + event Withdraw(address indexed user, uint256 amount); + +- event EmergencyWithdraw(address indexed user, uint256 amount); +- + // ----------- Modifiers ----------- + modifier onlyTokenManager() { + require( + manager.hasRole(manager.UBQ_TOKEN_MANAGER_ROLE(), msg.sender), +- "UBQ token: not manager" ++ "MasterChef: not UBQ manager" ++ ); ++ _; ++ } ++ modifier onlyBondingContract() { ++ require( ++ msg.sender == manager.bondingContractAddress(), ++ "MasterChef: not Bonding Contract" + ); + _; + } + + constructor(address _manager) { + manager = UbiquityAlgorithmicDollarManager(_manager); +- +- pool.lpToken = IERC20(manager.stableSwapMetaPoolAddress()); + pool.lastRewardBlock = block.number; + pool.accuGOVPerShare = 0; // uint256(1e12); + _updateUGOVMultiplier(); +@@ -85,7 +88,11 @@ contract MasterChef { + function pendingUGOV(address _user) external view returns (uint256) { + UserInfo storage user = userInfo[_user]; + uint256 accuGOVPerShare = pool.accuGOVPerShare; +- uint256 lpSupply = pool.lpToken.balanceOf(address(this)); ++ uint256 lpSupply = ++ IERC1155Ubiquity(manager.bondingShareAddress()).totalSupply(); ++ /* IERC20(manager.stableSwapMetaPoolAddress()).balanceOf( ++ manager.bondingContractAddress() ++ ); */ + + // console.log("accuGOVPerShare", accuGOVPerShare); + // console.log("lpSupply", lpSupply); +@@ -145,7 +152,11 @@ contract MasterChef { + return; + } + _updateUGOVMultiplier(); +- uint256 lpSupply = pool.lpToken.balanceOf(address(this)); ++ uint256 lpSupply = ++ IERC1155Ubiquity(manager.bondingShareAddress()).totalSupply(); ++ /* IERC20(manager.stableSwapMetaPoolAddress()).balanceOf( ++ manager.bondingContractAddress() ++ ); */ + + if (lpSupply == 0) { + pool.lastRewardBlock = block.number; +@@ -169,36 +180,42 @@ contract MasterChef { + } + + // Deposit LP tokens to MasterChef for uGOV allocation. +- function deposit(uint256 _amount) public { +- UserInfo storage user = userInfo[msg.sender]; ++ function deposit(uint256 _amount, address sender) ++ external ++ onlyBondingContract ++ { ++ UserInfo storage user = userInfo[sender]; + _updatePool(); + if (user.amount > 0) { + uint256 pending = + ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; +- _safeUGOVTransfer(msg.sender, pending); ++ _safeUGOVTransfer(sender, pending); + } +- pool.lpToken.safeTransferFrom( ++ /* pool.lpToken.safeTransferFrom( + address(msg.sender), + address(this), + _amount +- ); ++ ); */ + user.amount = user.amount + _amount; + user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; +- emit Deposit(msg.sender, _amount); ++ emit Deposit(sender, _amount); + } + + // Withdraw LP tokens from MasterChef. +- function withdraw(uint256 _amount) public { +- UserInfo storage user = userInfo[msg.sender]; ++ function withdraw(uint256 _amount, address sender) ++ external ++ onlyBondingContract ++ { ++ UserInfo storage user = userInfo[sender]; + require(user.amount >= _amount, "MC: amount too high"); + _updatePool(); + uint256 pending = + ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; +- _safeUGOVTransfer(msg.sender, pending); ++ _safeUGOVTransfer(sender, pending); + user.amount = user.amount - _amount; + user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; +- pool.lpToken.safeTransfer(address(msg.sender), _amount); +- emit Withdraw(msg.sender, _amount); ++ /* pool.lpToken.safeTransfer(msg.sender, _amount); */ ++ emit Withdraw(sender, _amount); + } + + /// @dev get pending uGOV rewards from MasterChef. +@@ -214,15 +231,6 @@ contract MasterChef { + return pending; + } + +- // Withdraw without caring about rewards. EMERGENCY ONLY. +- function emergencyWithdraw() public { +- UserInfo storage user = userInfo[msg.sender]; +- pool.lpToken.safeTransfer(address(msg.sender), user.amount); +- emit EmergencyWithdraw(msg.sender, user.amount); +- user.amount = 0; +- user.rewardDebt = 0; +- } +- + function _getMultiplier() internal view returns (uint256) { + console.log( + "## _getMultiplier numberOfBlockB:%s uGOVmultiplier:%s", + +commit 055f7180aba3fda3f86e30f6346a1e1ea416916a +Author: Benjamin +Date: Wed May 5 17:04:35 2021 +0200 + + feat(masterchef): improve tests + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index c8ac748..9e0ac99 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -37,9 +37,10 @@ contract MasterChef { + UbiquityAlgorithmicDollarManager public manager; + + // uGOV tokens created per block. +- uint256 public uGOVPerBlock = 1e12; ++ uint256 public uGOVPerBlock = 1e18; + // Bonus muliplier for early uGOV makers. + uint256 public uGOVmultiplier = 1e18; ++ uint256 public minPriceDiffToUpdateMultiplier = 1000000000000000; + uint256 public lastPrice = 1 ether; + // Info of each pool. + PoolInfo public pool; +@@ -74,6 +75,12 @@ contract MasterChef { + uGOVPerBlock = _uGOVPerBlock; + } + ++ function setMinPriceDiffToUpdateMultiplier( ++ uint256 _minPriceDiffToUpdateMultiplier ++ ) external onlyTokenManager { ++ minPriceDiffToUpdateMultiplier = _minPriceDiffToUpdateMultiplier; ++ } ++ + // View function to see pending uGOVs on frontend. + function pendingUGOV(address _user) external view returns (uint256) { + UserInfo storage user = userInfo[_user]; +@@ -84,14 +91,17 @@ contract MasterChef { + // console.log("lpSupply", lpSupply); + + if (block.number > pool.lastRewardBlock && lpSupply != 0) { +- uint256 multiplier = +- _getMultiplier(pool.lastRewardBlock, block.number); ++ uint256 multiplier = _getMultiplier(); + + uint256 uGOVReward = (multiplier * uGOVPerBlock) / 1e18; +- ++ console.log( ++ "## PENDING NEW MULTIPLIER multiplier:%s uGOVReward:%s", ++ multiplier, ++ uGOVReward ++ ); + accuGOVPerShare = +- ((accuGOVPerShare + uGOVReward) * 1e12) / +- lpSupply; ++ accuGOVPerShare + ++ ((uGOVReward * 1e12) / lpSupply); + + // console.log("multiplier", multiplier); + // console.log("uGOVReward", uGOVReward); +@@ -99,6 +109,7 @@ contract MasterChef { + // console.log("user.amount", user.amount); + // console.log("user.rewardDebt", user.rewardDebt); + // console.log("accuGOVPerShare", accuGOVPerShare); ++ + return (user.amount * accuGOVPerShare) / 1e12 - user.rewardDebt; + } + +@@ -106,14 +117,25 @@ contract MasterChef { + function _updateUGOVMultiplier() internal { + // (1.05/(1+abs(1-TWAP_PRICE))) + uint256 currentPrice = _getTwapPrice(); ++ ++ bool isPriceDiffEnough = false; + // a minimum price variation is needed to update the multiplier +- if ( +- currentPrice - lastPrice > 1000100000000000000 || +- lastPrice - currentPrice > 1000100000000000000 +- ) { ++ if (currentPrice > lastPrice) { ++ isPriceDiffEnough = ++ currentPrice - lastPrice > minPriceDiffToUpdateMultiplier; ++ } else { ++ isPriceDiffEnough = ++ lastPrice - currentPrice > minPriceDiffToUpdateMultiplier; ++ } ++ ++ if (isPriceDiffEnough) { + uGOVmultiplier = IUbiquityFormulas(manager.formulasAddress()) + .ugovMultiply(uGOVmultiplier, currentPrice); + lastPrice = currentPrice; ++ console.log( ++ "## MULTIPLIER UPDATED uGOVmultiplier:%s", ++ uGOVmultiplier ++ ); + } + } + +@@ -129,15 +151,20 @@ contract MasterChef { + pool.lastRewardBlock = block.number; + return; + } +- uint256 multiplier = _getMultiplier(pool.lastRewardBlock, block.number); +- uint256 uGOVReward = multiplier * uGOVPerBlock; ++ uint256 multiplier = _getMultiplier(); ++ uint256 uGOVReward = (multiplier * uGOVPerBlock) / 1e18; ++ console.log( ++ "## _updatePool WE ARE MINTING uGOVReward:%s uGOVPerBlock:%s", ++ uGOVReward, ++ uGOVPerBlock ++ ); + IERC20Ubiquity(manager.uGOVTokenAddress()).mint( + address(this), + uGOVReward + ); + pool.accuGOVPerShare = +- ((pool.accuGOVPerShare + uGOVReward) * 1e12) / +- lpSupply; ++ pool.accuGOVPerShare + ++ ((uGOVReward * 1e12) / lpSupply); + pool.lastRewardBlock = block.number; + } + +@@ -147,7 +174,7 @@ contract MasterChef { + _updatePool(); + if (user.amount > 0) { + uint256 pending = +- (user.amount * pool.accuGOVPerShare) / (1e12 - user.rewardDebt); ++ ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; + _safeUGOVTransfer(msg.sender, pending); + } + pool.lpToken.safeTransferFrom( +@@ -163,7 +190,7 @@ contract MasterChef { + // Withdraw LP tokens from MasterChef. + function withdraw(uint256 _amount) public { + UserInfo storage user = userInfo[msg.sender]; +- require(user.amount >= _amount, "withdraw: not good"); ++ require(user.amount >= _amount, "MC: amount too high"); + _updatePool(); + uint256 pending = + ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; +@@ -174,6 +201,19 @@ contract MasterChef { + emit Withdraw(msg.sender, _amount); + } + ++ /// @dev get pending uGOV rewards from MasterChef. ++ /// @return amount of pending rewards transfered to msg.sender ++ /// @notice only send pending rewards ++ function getRewards() external returns (uint256) { ++ UserInfo storage user = userInfo[msg.sender]; ++ _updatePool(); ++ uint256 pending = ++ ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; ++ _safeUGOVTransfer(msg.sender, pending); ++ user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; ++ return pending; ++ } ++ + // Withdraw without caring about rewards. EMERGENCY ONLY. + function emergencyWithdraw() public { + UserInfo storage user = userInfo[msg.sender]; +@@ -183,12 +223,13 @@ contract MasterChef { + user.rewardDebt = 0; + } + +- function _getMultiplier(uint256 _from, uint256 _to) +- internal +- view +- returns (uint256) +- { +- return (_to - _from) * uGOVmultiplier; ++ function _getMultiplier() internal view returns (uint256) { ++ console.log( ++ "## _getMultiplier numberOfBlockB:%s uGOVmultiplier:%s", ++ block.number - pool.lastRewardBlock, ++ uGOVmultiplier ++ ); ++ return (block.number - pool.lastRewardBlock) * uGOVmultiplier; + } + + function _getTwapPrice() internal view returns (uint256) { +@@ -203,9 +244,17 @@ contract MasterChef { + function _safeUGOVTransfer(address _to, uint256 _amount) internal { + IERC20Ubiquity uGOV = IERC20Ubiquity(manager.uGOVTokenAddress()); + uint256 uGOVBal = uGOV.balanceOf(address(this)); ++ ++ console.log( ++ "## _safeUGOVTransfer uGOVBal:%s _amount:%s uGOVmultiplier:%s ", ++ uGOVBal, ++ _amount, ++ uGOVmultiplier ++ ); + if (_amount > uGOVBal) { + uGOV.safeTransfer(_to, uGOVBal); + } else { ++ console.log("## ON TRASNFERE AMOUNT"); + uGOV.safeTransfer(_to, _amount); + } + } + +commit 1c7a843bc7da6d8c8c5ab6809ec73f1ddf3de543 +Author: Benjamin +Date: Tue May 4 09:40:15 2021 +0200 + + feat(bonding): update and improve tests + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index b71c524..c8ac748 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -8,8 +8,8 @@ import "./interfaces/ITWAPOracle.sol"; + import "./interfaces/IUbiquityFormulas.sol"; + + contract MasterChef { ++ using SafeERC20 for IERC20Ubiquity; + using SafeERC20 for IERC20; +- + // Info of each user. + struct UserInfo { + uint256 amount; // How many uAD-3CRV LP tokens the user has provided. +@@ -35,12 +35,12 @@ contract MasterChef { + + // Ubiquity Manager + UbiquityAlgorithmicDollarManager public manager; +- // The uGOV TOKEN! +- IERC20Ubiquity public uGOV; ++ + // uGOV tokens created per block. + uint256 public uGOVPerBlock = 1e12; + // Bonus muliplier for early uGOV makers. +- uint256 public uGOVmultiplier = 2e18; ++ uint256 public uGOVmultiplier = 1e18; ++ uint256 public lastPrice = 1 ether; + // Info of each pool. + PoolInfo public pool; + // Info of each user that stakes LP tokens. +@@ -56,23 +56,21 @@ contract MasterChef { + modifier onlyTokenManager() { + require( + manager.hasRole(manager.UBQ_TOKEN_MANAGER_ROLE(), msg.sender), +- "UBQ token: not minter" ++ "UBQ token: not manager" + ); + _; + } + + constructor(address _manager) { + manager = UbiquityAlgorithmicDollarManager(_manager); +- uGOV = IERC20Ubiquity(manager.uGOVTokenAddress()); ++ + pool.lpToken = IERC20(manager.stableSwapMetaPoolAddress()); + pool.lastRewardBlock = block.number; + pool.accuGOVPerShare = 0; // uint256(1e12); ++ _updateUGOVMultiplier(); + } + +- function setupUGOVPerBlock(uint256 _uGOVPerBlock) +- external +- onlyTokenManager +- { ++ function setUGOVPerBlock(uint256 _uGOVPerBlock) external onlyTokenManager { + uGOVPerBlock = _uGOVPerBlock; + } + +@@ -87,7 +85,7 @@ contract MasterChef { + + if (block.number > pool.lastRewardBlock && lpSupply != 0) { + uint256 multiplier = +- getMultiplier(pool.lastRewardBlock, block.number); ++ _getMultiplier(pool.lastRewardBlock, block.number); + + uint256 uGOVReward = (multiplier * uGOVPerBlock) / 1e18; + +@@ -105,26 +103,38 @@ contract MasterChef { + } + + // UPDATE uGOV multiplier +- function updateUGOVMultiplier() public { +- uGOVmultiplier = IUbiquityFormulas(manager.formulasAddress()) +- .ugovMultiply(uGOVmultiplier, getTwapPrice()); ++ function _updateUGOVMultiplier() internal { ++ // (1.05/(1+abs(1-TWAP_PRICE))) ++ uint256 currentPrice = _getTwapPrice(); ++ // a minimum price variation is needed to update the multiplier ++ if ( ++ currentPrice - lastPrice > 1000100000000000000 || ++ lastPrice - currentPrice > 1000100000000000000 ++ ) { ++ uGOVmultiplier = IUbiquityFormulas(manager.formulasAddress()) ++ .ugovMultiply(uGOVmultiplier, currentPrice); ++ lastPrice = currentPrice; ++ } + } + + // Update reward variables of the given pool to be up-to-date. +- function updatePool() public { ++ function _updatePool() internal { + if (block.number <= pool.lastRewardBlock) { + return; + } +- updateUGOVMultiplier(); ++ _updateUGOVMultiplier(); + uint256 lpSupply = pool.lpToken.balanceOf(address(this)); + + if (lpSupply == 0) { + pool.lastRewardBlock = block.number; + return; + } +- uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); ++ uint256 multiplier = _getMultiplier(pool.lastRewardBlock, block.number); + uint256 uGOVReward = multiplier * uGOVPerBlock; +- uGOV.mint(address(this), uGOVReward); ++ IERC20Ubiquity(manager.uGOVTokenAddress()).mint( ++ address(this), ++ uGOVReward ++ ); + pool.accuGOVPerShare = + ((pool.accuGOVPerShare + uGOVReward) * 1e12) / + lpSupply; +@@ -134,7 +144,7 @@ contract MasterChef { + // Deposit LP tokens to MasterChef for uGOV allocation. + function deposit(uint256 _amount) public { + UserInfo storage user = userInfo[msg.sender]; +- updatePool(); ++ _updatePool(); + if (user.amount > 0) { + uint256 pending = + (user.amount * pool.accuGOVPerShare) / (1e12 - user.rewardDebt); +@@ -154,7 +164,7 @@ contract MasterChef { + function withdraw(uint256 _amount) public { + UserInfo storage user = userInfo[msg.sender]; + require(user.amount >= _amount, "withdraw: not good"); +- updatePool(); ++ _updatePool(); + uint256 pending = + ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; + _safeUGOVTransfer(msg.sender, pending); +@@ -173,15 +183,15 @@ contract MasterChef { + user.rewardDebt = 0; + } + +- function getMultiplier(uint256 _from, uint256 _to) +- public ++ function _getMultiplier(uint256 _from, uint256 _to) ++ internal + view + returns (uint256) + { + return (_to - _from) * uGOVmultiplier; + } + +- function getTwapPrice() public view returns (uint256) { ++ function _getTwapPrice() internal view returns (uint256) { + return + ITWAPOracle(manager.twapOracleAddress()).consult( + manager.uADTokenAddress() +@@ -191,11 +201,12 @@ contract MasterChef { + // Safe uGOV transfer function, just in case if rounding + // error causes pool to not have enough uGOVs. + function _safeUGOVTransfer(address _to, uint256 _amount) internal { ++ IERC20Ubiquity uGOV = IERC20Ubiquity(manager.uGOVTokenAddress()); + uint256 uGOVBal = uGOV.balanceOf(address(this)); + if (_amount > uGOVBal) { +- uGOV.transfer(_to, uGOVBal); ++ uGOV.safeTransfer(_to, uGOVBal); + } else { +- uGOV.transfer(_to, _amount); ++ uGOV.safeTransfer(_to, _amount); + } + } + } + +commit ebea4a2d7a516ddde56dc5901971f9288dd5dd78 +Author: Alain Papazoglou +Date: Sat May 1 18:31:09 2021 +0200 + + fix(lint): fix lint pbs + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index b194dd8..b71c524 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -8,7 +8,6 @@ import "./interfaces/ITWAPOracle.sol"; + import "./interfaces/IUbiquityFormulas.sol"; + + contract MasterChef { +- UbiquityAlgorithmicDollarManager public manager; + using SafeERC20 for IERC20; + + // Info of each user. +@@ -33,6 +32,9 @@ contract MasterChef { + uint256 lastRewardBlock; // Last block number that uGOVs distribution occurs. + uint256 accuGOVPerShare; // Accumulated uGOVs per share, times 1e12. See below. + } ++ ++ // Ubiquity Manager ++ UbiquityAlgorithmicDollarManager public manager; + // The uGOV TOKEN! + IERC20Ubiquity public uGOV; + // uGOV tokens created per block. +@@ -74,27 +76,6 @@ contract MasterChef { + uGOVPerBlock = _uGOVPerBlock; + } + +- function getTwapPrice() public view returns (uint256) { +- return +- ITWAPOracle(manager.twapOracleAddress()).consult( +- manager.uADTokenAddress() +- ); +- } +- +- // UPDATE uGOV multiplier +- function updateUGOVMultiplier() public { +- uGOVmultiplier = IUbiquityFormulas(manager.formulasAddress()) +- .ugovMultiply(uGOVmultiplier, getTwapPrice()); +- } +- +- function getMultiplier(uint256 _from, uint256 _to) +- public +- view +- returns (uint256) +- { +- return (_to - _from) * uGOVmultiplier; +- } +- + // View function to see pending uGOVs on frontend. + function pendingUGOV(address _user) external view returns (uint256) { + UserInfo storage user = userInfo[_user]; +@@ -123,6 +104,12 @@ contract MasterChef { + return (user.amount * accuGOVPerShare) / 1e12 - user.rewardDebt; + } + ++ // UPDATE uGOV multiplier ++ function updateUGOVMultiplier() public { ++ uGOVmultiplier = IUbiquityFormulas(manager.formulasAddress()) ++ .ugovMultiply(uGOVmultiplier, getTwapPrice()); ++ } ++ + // Update reward variables of the given pool to be up-to-date. + function updatePool() public { + if (block.number <= pool.lastRewardBlock) { +@@ -151,7 +138,7 @@ contract MasterChef { + if (user.amount > 0) { + uint256 pending = + (user.amount * pool.accuGOVPerShare) / (1e12 - user.rewardDebt); +- safeUGOVTransfer(msg.sender, pending); ++ _safeUGOVTransfer(msg.sender, pending); + } + pool.lpToken.safeTransferFrom( + address(msg.sender), +@@ -170,7 +157,7 @@ contract MasterChef { + updatePool(); + uint256 pending = + ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; +- safeUGOVTransfer(msg.sender, pending); ++ _safeUGOVTransfer(msg.sender, pending); + user.amount = user.amount - _amount; + user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; + pool.lpToken.safeTransfer(address(msg.sender), _amount); +@@ -186,8 +173,24 @@ contract MasterChef { + user.rewardDebt = 0; + } + +- // Safe uGOV transfer function, just in case if rounding error causes pool to not have enough uGOVs. +- function safeUGOVTransfer(address _to, uint256 _amount) internal { ++ function getMultiplier(uint256 _from, uint256 _to) ++ public ++ view ++ returns (uint256) ++ { ++ return (_to - _from) * uGOVmultiplier; ++ } ++ ++ function getTwapPrice() public view returns (uint256) { ++ return ++ ITWAPOracle(manager.twapOracleAddress()).consult( ++ manager.uADTokenAddress() ++ ); ++ } ++ ++ // Safe uGOV transfer function, just in case if rounding ++ // error causes pool to not have enough uGOVs. ++ function _safeUGOVTransfer(address _to, uint256 _amount) internal { + uint256 uGOVBal = uGOV.balanceOf(address(this)); + if (_amount > uGOVBal) { + uGOV.transfer(_to, uGOVBal); + +commit 58c88a47b6464c474731c02e15b7d351923b1a3c +Author: Alain Papazoglou +Date: Sat May 1 13:28:19 2021 +0200 + + feat(formulas): change formula library to a contract + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index 89628d0..b194dd8 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -5,12 +5,11 @@ import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; + import "./interfaces/IERC20Ubiquity.sol"; + import "./UbiquityAlgorithmicDollarManager.sol"; + import "./interfaces/ITWAPOracle.sol"; +-import "./libs/UbiquityFormulas.sol"; ++import "./interfaces/IUbiquityFormulas.sol"; + + contract MasterChef { + UbiquityAlgorithmicDollarManager public manager; + using SafeERC20 for IERC20; +- using UbiquityFormulas for uint256; + + // Info of each user. + struct UserInfo { +@@ -84,7 +83,8 @@ contract MasterChef { + + // UPDATE uGOV multiplier + function updateUGOVMultiplier() public { +- uGOVmultiplier = uGOVmultiplier.ugovMultiply(getTwapPrice()); ++ uGOVmultiplier = IUbiquityFormulas(manager.formulasAddress()) ++ .ugovMultiply(uGOVmultiplier, getTwapPrice()); + } + + function getMultiplier(uint256 _from, uint256 _to) + +commit a31487295facdafadfea4e626b5c65fb3b8f1748 +Author: Alain Papazoglou +Date: Sat May 1 11:44:03 2021 +0200 + + fix(ugov): adjust constants dimensions + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index d6f530f..89628d0 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -99,18 +99,28 @@ contract MasterChef { + function pendingUGOV(address _user) external view returns (uint256) { + UserInfo storage user = userInfo[_user]; + uint256 accuGOVPerShare = pool.accuGOVPerShare; +- + uint256 lpSupply = pool.lpToken.balanceOf(address(this)); + ++ // console.log("accuGOVPerShare", accuGOVPerShare); ++ // console.log("lpSupply", lpSupply); ++ + if (block.number > pool.lastRewardBlock && lpSupply != 0) { + uint256 multiplier = + getMultiplier(pool.lastRewardBlock, block.number); +- uint256 uGOVReward = multiplier * uGOVPerBlock; ++ ++ uint256 uGOVReward = (multiplier * uGOVPerBlock) / 1e18; ++ + accuGOVPerShare = +- (accuGOVPerShare + uGOVReward) * +- (1e12 / lpSupply); ++ ((accuGOVPerShare + uGOVReward) * 1e12) / ++ lpSupply; ++ ++ // console.log("multiplier", multiplier); ++ // console.log("uGOVReward", uGOVReward); + } +- return user.amount * (accuGOVPerShare / 1e12) - user.rewardDebt; ++ // console.log("user.amount", user.amount); ++ // console.log("user.rewardDebt", user.rewardDebt); ++ // console.log("accuGOVPerShare", accuGOVPerShare); ++ return (user.amount * accuGOVPerShare) / 1e12 - user.rewardDebt; + } + + // Update reward variables of the given pool to be up-to-date. +@@ -129,8 +139,8 @@ contract MasterChef { + uint256 uGOVReward = multiplier * uGOVPerBlock; + uGOV.mint(address(this), uGOVReward); + pool.accuGOVPerShare = +- (pool.accuGOVPerShare + uGOVReward) * +- (1e12 / lpSupply); ++ ((pool.accuGOVPerShare + uGOVReward) * 1e12) / ++ lpSupply; + pool.lastRewardBlock = block.number; + } + + +commit 49809765261d85135011cbc667b820213fb8a23e +Author: Alain Papazoglou +Date: Fri Apr 30 22:53:15 2021 +0200 + + feat(ugov): add deposit and withdraw with tests (wip) + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index f52825d..d6f530f 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -36,20 +36,14 @@ contract MasterChef { + } + // The uGOV TOKEN! + IERC20Ubiquity public uGOV; +- // Block number when bonus uGOV period ends. +- uint256 public bonusEndBlock; + // uGOV tokens created per block. +- uint256 public uGOVPerBlock; ++ uint256 public uGOVPerBlock = 1e12; + // Bonus muliplier for early uGOV makers. +- uint256 public constant BONUS_MULTIPLIER = 10; +- // UGOV muliplier +- uint256 public uGOVmultiplier = 1; ++ uint256 public uGOVmultiplier = 2e18; + // Info of each pool. + PoolInfo public pool; + // Info of each user that stakes LP tokens. + mapping(address => UserInfo) public userInfo; +- // The block number when uGOV mining starts. +- uint256 public startBlock; + + event Deposit(address indexed user, uint256 amount); + +@@ -69,7 +63,9 @@ contract MasterChef { + constructor(address _manager) { + manager = UbiquityAlgorithmicDollarManager(_manager); + uGOV = IERC20Ubiquity(manager.uGOVTokenAddress()); +- pool.lpToken = IERC20Ubiquity(manager.curve3PoolTokenAddress()); ++ pool.lpToken = IERC20(manager.stableSwapMetaPoolAddress()); ++ pool.lastRewardBlock = block.number; ++ pool.accuGOVPerShare = 0; // uint256(1e12); + } + + function setupUGOVPerBlock(uint256 _uGOVPerBlock) +@@ -79,17 +75,6 @@ contract MasterChef { + uGOVPerBlock = _uGOVPerBlock; + } + +- function setupbonusEndBlock(uint256 _bonusEndBlock) +- external +- onlyTokenManager +- { +- bonusEndBlock = _bonusEndBlock; +- } +- +- function setupstartBlock(uint256 _startBlock) external onlyTokenManager { +- startBlock = _startBlock; +- } +- + function getTwapPrice() public view returns (uint256) { + return + ITWAPOracle(manager.twapOracleAddress()).consult( +@@ -98,9 +83,6 @@ contract MasterChef { + } + + // UPDATE uGOV multiplier +- // +- // ugov_mint_multiplier = ugov_mint_multiplier * (1.05/(1+abs(1-TWAP_PRICE))) +- // 5>=multiplier >=0.2 + function updateUGOVMultiplier() public { + uGOVmultiplier = uGOVmultiplier.ugovMultiply(getTwapPrice()); + } +@@ -110,22 +92,16 @@ contract MasterChef { + view + returns (uint256) + { +- if (_to <= bonusEndBlock) { +- return (_to - _from) * BONUS_MULTIPLIER; +- } else if (_from >= bonusEndBlock) { +- return _to - _from; +- } else { +- return +- ((bonusEndBlock - _from) * BONUS_MULTIPLIER) + +- (_to - bonusEndBlock); +- } ++ return (_to - _from) * uGOVmultiplier; + } + + // View function to see pending uGOVs on frontend. +- function pendinguGOV(address _user) external view returns (uint256) { ++ function pendingUGOV(address _user) external view returns (uint256) { + UserInfo storage user = userInfo[_user]; + uint256 accuGOVPerShare = pool.accuGOVPerShare; ++ + uint256 lpSupply = pool.lpToken.balanceOf(address(this)); ++ + if (block.number > pool.lastRewardBlock && lpSupply != 0) { + uint256 multiplier = + getMultiplier(pool.lastRewardBlock, block.number); +@@ -142,7 +118,9 @@ contract MasterChef { + if (block.number <= pool.lastRewardBlock) { + return; + } ++ updateUGOVMultiplier(); + uint256 lpSupply = pool.lpToken.balanceOf(address(this)); ++ + if (lpSupply == 0) { + pool.lastRewardBlock = block.number; + return; +@@ -163,7 +141,7 @@ contract MasterChef { + if (user.amount > 0) { + uint256 pending = + (user.amount * pool.accuGOVPerShare) / (1e12 - user.rewardDebt); +- safeuGOVTransfer(msg.sender, pending); ++ safeUGOVTransfer(msg.sender, pending); + } + pool.lpToken.safeTransferFrom( + address(msg.sender), +@@ -182,7 +160,7 @@ contract MasterChef { + updatePool(); + uint256 pending = + ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; +- safeuGOVTransfer(msg.sender, pending); ++ safeUGOVTransfer(msg.sender, pending); + user.amount = user.amount - _amount; + user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; + pool.lpToken.safeTransfer(address(msg.sender), _amount); +@@ -199,7 +177,7 @@ contract MasterChef { + } + + // Safe uGOV transfer function, just in case if rounding error causes pool to not have enough uGOVs. +- function safeuGOVTransfer(address _to, uint256 _amount) internal { ++ function safeUGOVTransfer(address _to, uint256 _amount) internal { + uint256 uGOVBal = uGOV.balanceOf(address(this)); + if (_amount > uGOVBal) { + uGOV.transfer(_to, uGOVBal); + +commit 4ac95a46f929613bc274460b4f63519a4d836091 +Author: Alain Papazoglou +Date: Fri Apr 30 13:25:20 2021 +0200 + + feat(ugov): add mint multiplier formula with tests + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index 567f417..f52825d 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -4,14 +4,17 @@ pragma solidity 0.8.3; + import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; + import "./interfaces/IERC20Ubiquity.sol"; + import "./UbiquityAlgorithmicDollarManager.sol"; ++import "./interfaces/ITWAPOracle.sol"; ++import "./libs/UbiquityFormulas.sol"; + + contract MasterChef { + UbiquityAlgorithmicDollarManager public manager; + using SafeERC20 for IERC20; ++ using UbiquityFormulas for uint256; + + // Info of each user. + struct UserInfo { +- uint256 amount; // How many LP tokens the user has provided. ++ uint256 amount; // How many uAD-3CRV LP tokens the user has provided. + uint256 rewardDebt; // Reward debt. See explanation below. + // + // We do some fancy math here. Basically, any point in time, the amount of uGOVs +@@ -27,27 +30,24 @@ contract MasterChef { + } + // Info of each pool. + struct PoolInfo { +- IERC20 lpToken; // Address of LP token contract. +- uint256 allocPoint; // How many allocation points assigned to this pool. uGOVs to distribute per block. ++ IERC20 lpToken; // Address of uAD-3CRV LP token contract. + uint256 lastRewardBlock; // Last block number that uGOVs distribution occurs. + uint256 accuGOVPerShare; // Accumulated uGOVs per share, times 1e12. See below. + } + // The uGOV TOKEN! + IERC20Ubiquity public uGOV; +- // Dev address. +- address public devaddr; + // Block number when bonus uGOV period ends. + uint256 public bonusEndBlock; + // uGOV tokens created per block. + uint256 public uGOVPerBlock; + // Bonus muliplier for early uGOV makers. + uint256 public constant BONUS_MULTIPLIER = 10; ++ // UGOV muliplier ++ uint256 public uGOVmultiplier = 1; + // Info of each pool. +- PoolInfo public poolInfo; ++ PoolInfo public pool; + // Info of each user that stakes LP tokens. + mapping(address => UserInfo) public userInfo; +- // Total allocation poitns. Must be the sum of all allocation points in all pools. +- uint256 public totalAllocPoint = 0; + // The block number when uGOV mining starts. + uint256 public startBlock; + +@@ -58,38 +58,53 @@ contract MasterChef { + event EmergencyWithdraw(address indexed user, uint256 amount); + + // ----------- Modifiers ----------- +- modifier onlyMinter() { ++ modifier onlyTokenManager() { + require( +- manager.hasRole(manager.UBQ_MINTER_ROLE(), msg.sender), ++ manager.hasRole(manager.UBQ_TOKEN_MANAGER_ROLE(), msg.sender), + "UBQ token: not minter" + ); + _; + } + +- constructor( +- address _manager // , +- ) // uint256 _uGOVPerBlock, +- // uint256 _startBlock, +- // uint256 _bonusEndBlock +- { ++ constructor(address _manager) { + manager = UbiquityAlgorithmicDollarManager(_manager); + uGOV = IERC20Ubiquity(manager.uGOVTokenAddress()); ++ pool.lpToken = IERC20Ubiquity(manager.curve3PoolTokenAddress()); ++ } + +- // uGOVPerBlock = _uGOVPerBlock; +- // bonusEndBlock = _bonusEndBlock; +- // startBlock = _startBlock; ++ function setupUGOVPerBlock(uint256 _uGOVPerBlock) ++ external ++ onlyTokenManager ++ { ++ uGOVPerBlock = _uGOVPerBlock; + } + +- // Update the given pool's uGOV allocation point. Can only be called by the owner. +- function set(uint256 _allocPoint, bool _withUpdate) public onlyMinter { +- if (_withUpdate) { +- updatePool(); +- } +- totalAllocPoint = totalAllocPoint - poolInfo.allocPoint + _allocPoint; +- poolInfo.allocPoint = _allocPoint; ++ function setupbonusEndBlock(uint256 _bonusEndBlock) ++ external ++ onlyTokenManager ++ { ++ bonusEndBlock = _bonusEndBlock; ++ } ++ ++ function setupstartBlock(uint256 _startBlock) external onlyTokenManager { ++ startBlock = _startBlock; ++ } ++ ++ function getTwapPrice() public view returns (uint256) { ++ return ++ ITWAPOracle(manager.twapOracleAddress()).consult( ++ manager.uADTokenAddress() ++ ); ++ } ++ ++ // UPDATE uGOV multiplier ++ // ++ // ugov_mint_multiplier = ugov_mint_multiplier * (1.05/(1+abs(1-TWAP_PRICE))) ++ // 5>=multiplier >=0.2 ++ function updateUGOVMultiplier() public { ++ uGOVmultiplier = uGOVmultiplier.ugovMultiply(getTwapPrice()); + } + +- // Return reward multiplier over the given _from to _to block. + function getMultiplier(uint256 _from, uint256 _to) + public + view +@@ -108,16 +123,13 @@ contract MasterChef { + + // View function to see pending uGOVs on frontend. + function pendinguGOV(address _user) external view returns (uint256) { +- PoolInfo storage pool = poolInfo; + UserInfo storage user = userInfo[_user]; + uint256 accuGOVPerShare = pool.accuGOVPerShare; + uint256 lpSupply = pool.lpToken.balanceOf(address(this)); + if (block.number > pool.lastRewardBlock && lpSupply != 0) { + uint256 multiplier = + getMultiplier(pool.lastRewardBlock, block.number); +- uint256 uGOVReward = +- (multiplier * uGOVPerBlock) * +- (pool.allocPoint / totalAllocPoint); ++ uint256 uGOVReward = multiplier * uGOVPerBlock; + accuGOVPerShare = + (accuGOVPerShare + uGOVReward) * + (1e12 / lpSupply); +@@ -127,7 +139,6 @@ contract MasterChef { + + // Update reward variables of the given pool to be up-to-date. + function updatePool() public { +- PoolInfo storage pool = poolInfo; + if (block.number <= pool.lastRewardBlock) { + return; + } +@@ -137,8 +148,7 @@ contract MasterChef { + return; + } + uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); +- uint256 uGOVReward = +- multiplier * uGOVPerBlock * (pool.allocPoint / totalAllocPoint); ++ uint256 uGOVReward = multiplier * uGOVPerBlock; + uGOV.mint(address(this), uGOVReward); + pool.accuGOVPerShare = + (pool.accuGOVPerShare + uGOVReward) * +@@ -148,7 +158,6 @@ contract MasterChef { + + // Deposit LP tokens to MasterChef for uGOV allocation. + function deposit(uint256 _amount) public { +- PoolInfo storage pool = poolInfo; + UserInfo storage user = userInfo[msg.sender]; + updatePool(); + if (user.amount > 0) { +@@ -168,7 +177,6 @@ contract MasterChef { + + // Withdraw LP tokens from MasterChef. + function withdraw(uint256 _amount) public { +- PoolInfo storage pool = poolInfo; + UserInfo storage user = userInfo[msg.sender]; + require(user.amount >= _amount, "withdraw: not good"); + updatePool(); +@@ -183,7 +191,6 @@ contract MasterChef { + + // Withdraw without caring about rewards. EMERGENCY ONLY. + function emergencyWithdraw() public { +- PoolInfo storage pool = poolInfo; + UserInfo storage user = userInfo[msg.sender]; + pool.lpToken.safeTransfer(address(msg.sender), user.amount); + emit EmergencyWithdraw(msg.sender, user.amount); + +commit ed88ecbd410284e437b210edfa2c4deee0ebbbce +Author: Alain Papazoglou +Date: Thu Apr 29 19:29:25 2021 +0200 + + feat(ugov): init MasterChef and first tests (wip) + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +new file mode 100644 +index 0000000..567f417 +--- /dev/null ++++ b/contracts/MasterChef.sol +@@ -0,0 +1,203 @@ ++// SPDX-License-Identifier: MIT ++pragma solidity 0.8.3; ++ ++import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; ++import "./interfaces/IERC20Ubiquity.sol"; ++import "./UbiquityAlgorithmicDollarManager.sol"; ++ ++contract MasterChef { ++ UbiquityAlgorithmicDollarManager public manager; ++ using SafeERC20 for IERC20; ++ ++ // Info of each user. ++ struct UserInfo { ++ uint256 amount; // How many LP tokens the user has provided. ++ uint256 rewardDebt; // Reward debt. See explanation below. ++ // ++ // We do some fancy math here. Basically, any point in time, the amount of uGOVs ++ // entitled to a user but is pending to be distributed is: ++ // ++ // pending reward = (user.amount * pool.accuGOVPerShare) - user.rewardDebt ++ // ++ // Whenever a user deposits or withdraws LP tokens to a pool. Here's what happens: ++ // 1. The pool's `accuGOVPerShare` (and `lastRewardBlock`) gets updated. ++ // 2. User receives the pending reward sent to his/her address. ++ // 3. User's `amount` gets updated. ++ // 4. User's `rewardDebt` gets updated. ++ } ++ // Info of each pool. ++ struct PoolInfo { ++ IERC20 lpToken; // Address of LP token contract. ++ uint256 allocPoint; // How many allocation points assigned to this pool. uGOVs to distribute per block. ++ uint256 lastRewardBlock; // Last block number that uGOVs distribution occurs. ++ uint256 accuGOVPerShare; // Accumulated uGOVs per share, times 1e12. See below. ++ } ++ // The uGOV TOKEN! ++ IERC20Ubiquity public uGOV; ++ // Dev address. ++ address public devaddr; ++ // Block number when bonus uGOV period ends. ++ uint256 public bonusEndBlock; ++ // uGOV tokens created per block. ++ uint256 public uGOVPerBlock; ++ // Bonus muliplier for early uGOV makers. ++ uint256 public constant BONUS_MULTIPLIER = 10; ++ // Info of each pool. ++ PoolInfo public poolInfo; ++ // Info of each user that stakes LP tokens. ++ mapping(address => UserInfo) public userInfo; ++ // Total allocation poitns. Must be the sum of all allocation points in all pools. ++ uint256 public totalAllocPoint = 0; ++ // The block number when uGOV mining starts. ++ uint256 public startBlock; ++ ++ event Deposit(address indexed user, uint256 amount); ++ ++ event Withdraw(address indexed user, uint256 amount); ++ ++ event EmergencyWithdraw(address indexed user, uint256 amount); ++ ++ // ----------- Modifiers ----------- ++ modifier onlyMinter() { ++ require( ++ manager.hasRole(manager.UBQ_MINTER_ROLE(), msg.sender), ++ "UBQ token: not minter" ++ ); ++ _; ++ } ++ ++ constructor( ++ address _manager // , ++ ) // uint256 _uGOVPerBlock, ++ // uint256 _startBlock, ++ // uint256 _bonusEndBlock ++ { ++ manager = UbiquityAlgorithmicDollarManager(_manager); ++ uGOV = IERC20Ubiquity(manager.uGOVTokenAddress()); ++ ++ // uGOVPerBlock = _uGOVPerBlock; ++ // bonusEndBlock = _bonusEndBlock; ++ // startBlock = _startBlock; ++ } ++ ++ // Update the given pool's uGOV allocation point. Can only be called by the owner. ++ function set(uint256 _allocPoint, bool _withUpdate) public onlyMinter { ++ if (_withUpdate) { ++ updatePool(); ++ } ++ totalAllocPoint = totalAllocPoint - poolInfo.allocPoint + _allocPoint; ++ poolInfo.allocPoint = _allocPoint; ++ } ++ ++ // Return reward multiplier over the given _from to _to block. ++ function getMultiplier(uint256 _from, uint256 _to) ++ public ++ view ++ returns (uint256) ++ { ++ if (_to <= bonusEndBlock) { ++ return (_to - _from) * BONUS_MULTIPLIER; ++ } else if (_from >= bonusEndBlock) { ++ return _to - _from; ++ } else { ++ return ++ ((bonusEndBlock - _from) * BONUS_MULTIPLIER) + ++ (_to - bonusEndBlock); ++ } ++ } ++ ++ // View function to see pending uGOVs on frontend. ++ function pendinguGOV(address _user) external view returns (uint256) { ++ PoolInfo storage pool = poolInfo; ++ UserInfo storage user = userInfo[_user]; ++ uint256 accuGOVPerShare = pool.accuGOVPerShare; ++ uint256 lpSupply = pool.lpToken.balanceOf(address(this)); ++ if (block.number > pool.lastRewardBlock && lpSupply != 0) { ++ uint256 multiplier = ++ getMultiplier(pool.lastRewardBlock, block.number); ++ uint256 uGOVReward = ++ (multiplier * uGOVPerBlock) * ++ (pool.allocPoint / totalAllocPoint); ++ accuGOVPerShare = ++ (accuGOVPerShare + uGOVReward) * ++ (1e12 / lpSupply); ++ } ++ return user.amount * (accuGOVPerShare / 1e12) - user.rewardDebt; ++ } ++ ++ // Update reward variables of the given pool to be up-to-date. ++ function updatePool() public { ++ PoolInfo storage pool = poolInfo; ++ if (block.number <= pool.lastRewardBlock) { ++ return; ++ } ++ uint256 lpSupply = pool.lpToken.balanceOf(address(this)); ++ if (lpSupply == 0) { ++ pool.lastRewardBlock = block.number; ++ return; ++ } ++ uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); ++ uint256 uGOVReward = ++ multiplier * uGOVPerBlock * (pool.allocPoint / totalAllocPoint); ++ uGOV.mint(address(this), uGOVReward); ++ pool.accuGOVPerShare = ++ (pool.accuGOVPerShare + uGOVReward) * ++ (1e12 / lpSupply); ++ pool.lastRewardBlock = block.number; ++ } ++ ++ // Deposit LP tokens to MasterChef for uGOV allocation. ++ function deposit(uint256 _amount) public { ++ PoolInfo storage pool = poolInfo; ++ UserInfo storage user = userInfo[msg.sender]; ++ updatePool(); ++ if (user.amount > 0) { ++ uint256 pending = ++ (user.amount * pool.accuGOVPerShare) / (1e12 - user.rewardDebt); ++ safeuGOVTransfer(msg.sender, pending); ++ } ++ pool.lpToken.safeTransferFrom( ++ address(msg.sender), ++ address(this), ++ _amount ++ ); ++ user.amount = user.amount + _amount; ++ user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; ++ emit Deposit(msg.sender, _amount); ++ } ++ ++ // Withdraw LP tokens from MasterChef. ++ function withdraw(uint256 _amount) public { ++ PoolInfo storage pool = poolInfo; ++ UserInfo storage user = userInfo[msg.sender]; ++ require(user.amount >= _amount, "withdraw: not good"); ++ updatePool(); ++ uint256 pending = ++ ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; ++ safeuGOVTransfer(msg.sender, pending); ++ user.amount = user.amount - _amount; ++ user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; ++ pool.lpToken.safeTransfer(address(msg.sender), _amount); ++ emit Withdraw(msg.sender, _amount); ++ } ++ ++ // Withdraw without caring about rewards. EMERGENCY ONLY. ++ function emergencyWithdraw() public { ++ PoolInfo storage pool = poolInfo; ++ UserInfo storage user = userInfo[msg.sender]; ++ pool.lpToken.safeTransfer(address(msg.sender), user.amount); ++ emit EmergencyWithdraw(msg.sender, user.amount); ++ user.amount = 0; ++ user.rewardDebt = 0; ++ } ++ ++ // Safe uGOV transfer function, just in case if rounding error causes pool to not have enough uGOVs. ++ function safeuGOVTransfer(address _to, uint256 _amount) internal { ++ uint256 uGOVBal = uGOV.balanceOf(address(this)); ++ if (_amount > uGOVBal) { ++ uGOV.transfer(_to, uGOVBal); ++ } else { ++ uGOV.transfer(_to, _amount); ++ } ++ } ++} diff --git a/V2.sol b/V2.sol new file mode 100644 index 0000000..17caa03 --- /dev/null +++ b/V2.sol @@ -0,0 +1,2570 @@ +commit 0ddbdceafe857923c570459b793df8f9d5052af7 +Author: zapaz.eth +Date: Mon Aug 9 17:24:31 2021 +0200 + + MasterChefV2 is ReentrancyGuard + +diff --git a/contracts/MasterChefV2.sol b/contracts/MasterChefV2.sol +index b65a7ba..19d76b1 100644 +--- a/contracts/MasterChefV2.sol ++++ b/contracts/MasterChefV2.sol +@@ -2,6 +2,7 @@ + pragma solidity 0.8.3; + + import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; ++import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; + import "./interfaces/IERC20Ubiquity.sol"; + import "./UbiquityAlgorithmicDollarManager.sol"; + import "./interfaces/ITWAPOracle.sol"; +@@ -10,7 +11,7 @@ import "./interfaces/IUbiquityFormulas.sol"; + + import "./interfaces/IERC1155Ubiquity.sol"; + +-contract MasterChefV2 { ++contract MasterChefV2 is ReentrancyGuard { + using SafeERC20 for IERC20Ubiquity; + using SafeERC20 for IERC20; + +@@ -138,7 +139,7 @@ contract MasterChefV2 { + address to, + uint256 _amount, + uint256 _bondingShareID +- ) external onlyBondingContract { ++ ) external nonReentrant onlyBondingContract { + _deposit(to, _amount, _bondingShareID); + } + +@@ -147,7 +148,7 @@ contract MasterChefV2 { + address to, + uint256 _amount, + uint256 _bondingShareID +- ) external onlyBondingContract { ++ ) external nonReentrant onlyBondingContract { + BondingShareInfo storage bs = _bsInfo[_bondingShareID]; + require(bs.amount >= _amount, "MC: amount too high"); + _updatePool(); + +commit 21323f6e3051cd2c2f6a5d0c410abd281cbdfab4 +Author: zapaz.eth +Date: Mon Aug 9 13:00:46 2021 +0200 + + add 2 events to MasterChefV2 + +diff --git a/contracts/MasterChefV2.sol b/contracts/MasterChefV2.sol +index b5da56b..b65a7ba 100644 +--- a/contracts/MasterChefV2.sol ++++ b/contracts/MasterChefV2.sol +@@ -42,11 +42,11 @@ contract MasterChefV2 { + UbiquityAlgorithmicDollarManager public manager; + + // uGOV tokens created per block. +- uint256 public uGOVPerBlock = 1e18; ++ uint256 public uGOVPerBlock; + // Bonus muliplier for early uGOV makers. + uint256 public uGOVmultiplier = 1e18; +- uint256 public minPriceDiffToUpdateMultiplier = 1000000000000000; +- uint256 public lastPrice = 1 ether; ++ uint256 public minPriceDiffToUpdateMultiplier = 1e15; ++ uint256 public lastPrice = 1e18; + uint256 public uGOVDivider; + // Info of each pool. + PoolInfo public pool; +@@ -65,6 +65,12 @@ contract MasterChefV2 { + uint256 indexed bondingShareId + ); + ++ event UGOVPerBlockModified(uint256 indexed uGOVPerBlock); ++ ++ event MinPriceDiffToUpdateMultiplierModified( ++ uint256 indexed minPriceDiffToUpdateMultiplier ++ ); ++ + // ----------- Modifiers ----------- + modifier onlyTokenManager() { + require( +@@ -107,6 +113,7 @@ contract MasterChefV2 { + + function setUGOVPerBlock(uint256 _uGOVPerBlock) external onlyTokenManager { + uGOVPerBlock = _uGOVPerBlock; ++ emit UGOVPerBlockModified(_uGOVPerBlock); + } + + // the bigger uGOVDivider is the less extra Ugov will be minted for the treasury +@@ -121,6 +128,9 @@ contract MasterChefV2 { + uint256 _minPriceDiffToUpdateMultiplier + ) external onlyTokenManager { + minPriceDiffToUpdateMultiplier = _minPriceDiffToUpdateMultiplier; ++ emit MinPriceDiffToUpdateMultiplierModified( ++ _minPriceDiffToUpdateMultiplier ++ ); + } + + // Deposit LP tokens to MasterChef for uGOV allocation. + +commit 00c0abf7e8918e0c13bd02bb24a1eded60b65015 +Author: zapaz.eth +Date: Fri Aug 6 12:32:07 2021 +0200 + + add inital deposits on MasterChefV2.1 constructor + +diff --git a/contracts/MasterChefV2.sol b/contracts/MasterChefV2.sol +index 3a648e6..b5da56b 100644 +--- a/contracts/MasterChefV2.sol ++++ b/contracts/MasterChefV2.sol +@@ -81,12 +81,28 @@ contract MasterChefV2 { + _; + } + +- constructor(address _manager) { ++ constructor( ++ address _manager, ++ address[] memory _tos, ++ uint256[] memory _amounts, ++ uint256[] memory _bondingShareIDs ++ ) { + manager = UbiquityAlgorithmicDollarManager(_manager); + pool.lastRewardBlock = block.number; + pool.accuGOVPerShare = 0; // uint256(1e12); + uGOVDivider = 5; // 100 / 5 = 20% extra minted ugov for treasury + _updateUGOVMultiplier(); ++ ++ uint256 lgt = _tos.length; ++ require(lgt == _amounts.length, "_amounts array not same length"); ++ require( ++ lgt == _bondingShareIDs.length, ++ "_bondingShareIDs array not same length" ++ ); ++ ++ for (uint256 i = 0; i < lgt; ++i) { ++ _deposit(_tos[i], _amounts[i], _bondingShareIDs[i]); ++ } + } + + function setUGOVPerBlock(uint256 _uGOVPerBlock) external onlyTokenManager { +@@ -113,17 +129,7 @@ contract MasterChefV2 { + uint256 _amount, + uint256 _bondingShareID + ) external onlyBondingContract { +- BondingShareInfo storage bs = _bsInfo[_bondingShareID]; +- _updatePool(); +- if (bs.amount > 0) { +- uint256 pending = ((bs.amount * pool.accuGOVPerShare) / 1e12) - +- bs.rewardDebt; +- _safeUGOVTransfer(to, pending); +- } +- bs.amount += _amount; +- bs.rewardDebt = (bs.amount * pool.accuGOVPerShare) / 1e12; +- _totalShares += _amount; +- emit Deposit(to, _amount, _bondingShareID); ++ _deposit(to, _amount, _bondingShareID); + } + + // Withdraw LP tokens from MasterChef. +@@ -205,6 +211,25 @@ contract MasterChefV2 { + return _totalShares; + } + ++ // _Deposit LP tokens to MasterChef for uGOV allocation. ++ function _deposit( ++ address to, ++ uint256 _amount, ++ uint256 _bondingShareID ++ ) internal { ++ BondingShareInfo storage bs = _bsInfo[_bondingShareID]; ++ _updatePool(); ++ if (bs.amount > 0) { ++ uint256 pending = ((bs.amount * pool.accuGOVPerShare) / 1e12) - ++ bs.rewardDebt; ++ _safeUGOVTransfer(to, pending); ++ } ++ bs.amount += _amount; ++ bs.rewardDebt = (bs.amount * pool.accuGOVPerShare) / 1e12; ++ _totalShares += _amount; ++ emit Deposit(to, _amount, _bondingShareID); ++ } ++ + // UPDATE uGOV multiplier + function _updateUGOVMultiplier() internal { + // (1.05/(1+abs(1-TWAP_PRICE))) + +commit c4a85e22b5bae0c4d8bd0def8f423d4aa4653a2b +Author: zapaz.eth +Date: Thu Aug 5 22:41:52 2021 +0200 + + full migration simulation on mainnet fork + +diff --git a/contracts/MasterChefV2.sol b/contracts/MasterChefV2.sol +index dd6fc82..3a648e6 100644 +--- a/contracts/MasterChefV2.sol ++++ b/contracts/MasterChefV2.sol +@@ -9,7 +9,6 @@ import "./BondingShareV2.sol"; + import "./interfaces/IUbiquityFormulas.sol"; + + import "./interfaces/IERC1155Ubiquity.sol"; +-import "hardhat/console.sol"; + + contract MasterChefV2 { + using SafeERC20 for IERC20Ubiquity; +@@ -178,41 +177,13 @@ contract MasterChefV2 { + BondingShareInfo storage user = _bsInfo[bondingShareID]; + uint256 accuGOVPerShare = pool.accuGOVPerShare; + +- console.log( +- "## _totalShares:%s block.number:%s pool.lastRewardBlock:%s", +- _totalShares, +- block.number, +- pool.lastRewardBlock +- ); +- + if (block.number > pool.lastRewardBlock && _totalShares != 0) { + uint256 multiplier = _getMultiplier(); +- console.log( +- "## multiplier:%s uGOVPerBlock:%s _totalShares:%s", +- multiplier, +- uGOVPerBlock, +- _totalShares +- ); + uint256 uGOVReward = (multiplier * uGOVPerBlock) / 1e18; +- console.log( +- "## uGOVReward:%s accuGOVPerShare:%s", +- uGOVReward, +- accuGOVPerShare +- ); + accuGOVPerShare = + accuGOVPerShare + + ((uGOVReward * 1e12) / _totalShares); +- console.log("## accuGOVPerShare:%s", accuGOVPerShare); + } +- console.log( +- "## user.amount:%s user.rewardDebt:%s", +- user.amount, +- user.rewardDebt +- ); +- console.log( +- "## return value:%s", +- (user.amount * accuGOVPerShare) / 1e12 - user.rewardDebt +- ); + return (user.amount * accuGOVPerShare) / 1e12 - user.rewardDebt; + } + +@@ -297,19 +268,6 @@ contract MasterChefV2 { + } + + function _getMultiplier() internal view returns (uint256) { +- console.log( +- "## block.number:%s pool.lastRewardBlock:%s uGOVmultiplier:%s", +- block.number, +- pool.lastRewardBlock, +- uGOVmultiplier +- ); +- uint256 subs = block.number - pool.lastRewardBlock; +- uint256 muls = subs * uGOVmultiplier; +- console.log("## subs:%s muls:%s", subs, muls); +- console.log( +- "## return multiplier:%s", +- (block.number - pool.lastRewardBlock) * uGOVmultiplier +- ); + return (block.number - pool.lastRewardBlock) * uGOVmultiplier; + } + + +commit 91b60f27dc6e09555dfc4769a1b5b90a1668eb71 +Author: zapaz.eth +Date: Thu Aug 5 17:01:24 2021 +0200 + + merge tests with fix + +diff --git a/contracts/MasterChefV2.sol b/contracts/MasterChefV2.sol +index 64cf068..dd6fc82 100644 +--- a/contracts/MasterChefV2.sol ++++ b/contracts/MasterChefV2.sol +@@ -178,6 +178,13 @@ contract MasterChefV2 { + BondingShareInfo storage user = _bsInfo[bondingShareID]; + uint256 accuGOVPerShare = pool.accuGOVPerShare; + ++ console.log( ++ "## _totalShares:%s block.number:%s pool.lastRewardBlock:%s", ++ _totalShares, ++ block.number, ++ pool.lastRewardBlock ++ ); ++ + if (block.number > pool.lastRewardBlock && _totalShares != 0) { + uint256 multiplier = _getMultiplier(); + console.log( + +commit e0bfdeb285ce5d998cfef99e01187331977a7404 +Author: Benjamin +Date: Wed Aug 4 19:07:22 2021 +0200 + + fix(masterchef) ubq rewards + +diff --git a/contracts/MasterChefV2.sol b/contracts/MasterChefV2.sol +index d389726..64cf068 100644 +--- a/contracts/MasterChefV2.sol ++++ b/contracts/MasterChefV2.sol +@@ -9,6 +9,7 @@ import "./BondingShareV2.sol"; + import "./interfaces/IUbiquityFormulas.sol"; + + import "./interfaces/IERC1155Ubiquity.sol"; ++import "hardhat/console.sol"; + + contract MasterChefV2 { + using SafeERC20 for IERC20Ubiquity; +@@ -176,18 +177,35 @@ contract MasterChefV2 { + { + BondingShareInfo storage user = _bsInfo[bondingShareID]; + uint256 accuGOVPerShare = pool.accuGOVPerShare; +- uint256 lpSupply = IERC1155Ubiquity(manager.bondingShareAddress()) +- .totalSupply(); + +- if (block.number > pool.lastRewardBlock && lpSupply != 0) { ++ if (block.number > pool.lastRewardBlock && _totalShares != 0) { + uint256 multiplier = _getMultiplier(); +- ++ console.log( ++ "## multiplier:%s uGOVPerBlock:%s _totalShares:%s", ++ multiplier, ++ uGOVPerBlock, ++ _totalShares ++ ); + uint256 uGOVReward = (multiplier * uGOVPerBlock) / 1e18; ++ console.log( ++ "## uGOVReward:%s accuGOVPerShare:%s", ++ uGOVReward, ++ accuGOVPerShare ++ ); + accuGOVPerShare = + accuGOVPerShare + +- ((uGOVReward * 1e12) / lpSupply); ++ ((uGOVReward * 1e12) / _totalShares); ++ console.log("## accuGOVPerShare:%s", accuGOVPerShare); + } +- ++ console.log( ++ "## user.amount:%s user.rewardDebt:%s", ++ user.amount, ++ user.rewardDebt ++ ); ++ console.log( ++ "## return value:%s", ++ (user.amount * accuGOVPerShare) / 1e12 - user.rewardDebt ++ ); + return (user.amount * accuGOVPerShare) / 1e12 - user.rewardDebt; + } + +@@ -237,9 +255,8 @@ contract MasterChefV2 { + return; + } + _updateUGOVMultiplier(); +- uint256 lpSupply = IERC1155Ubiquity(manager.bondingShareAddress()) +- .totalSupply(); +- if (lpSupply == 0) { ++ ++ if (_totalShares == 0) { + pool.lastRewardBlock = block.number; + return; + } +@@ -256,7 +273,7 @@ contract MasterChefV2 { + ); + pool.accuGOVPerShare = + pool.accuGOVPerShare + +- ((uGOVReward * 1e12) / lpSupply); ++ ((uGOVReward * 1e12) / _totalShares); + pool.lastRewardBlock = block.number; + } + +@@ -273,6 +290,19 @@ contract MasterChefV2 { + } + + function _getMultiplier() internal view returns (uint256) { ++ console.log( ++ "## block.number:%s pool.lastRewardBlock:%s uGOVmultiplier:%s", ++ block.number, ++ pool.lastRewardBlock, ++ uGOVmultiplier ++ ); ++ uint256 subs = block.number - pool.lastRewardBlock; ++ uint256 muls = subs * uGOVmultiplier; ++ console.log("## subs:%s muls:%s", subs, muls); ++ console.log( ++ "## return multiplier:%s", ++ (block.number - pool.lastRewardBlock) * uGOVmultiplier ++ ); + return (block.number - pool.lastRewardBlock) * uGOVmultiplier; + } + + +commit 7acbbac20207debe835469ca89ca9006ddf3fde2 +Author: zapaz.eth +Date: Wed Aug 4 15:12:28 2021 +0200 + + successfull test of one migrate with new MasterChefV2 deployed on a recent mainnet fork + +diff --git a/contracts/MasterChefV2.sol b/contracts/MasterChefV2.sol +index 975fcac..05da912 100644 +--- a/contracts/MasterChefV2.sol ++++ b/contracts/MasterChefV2.sol +@@ -183,9 +183,7 @@ contract MasterChefV2 { + uint256 multiplier = _getMultiplier(); + + uint256 uGOVReward = (multiplier * uGOVPerBlock) / 1e18; +- accuGOVPerShare = +- accuGOVPerShare + +- ((uGOVReward) / (lpSupply * 1e6)); ++ accuGOVPerShare = accuGOVPerShare + uGOVReward / (lpSupply * 1e6); + } + + return (user.amount * accuGOVPerShare) / 1e12 - user.rewardDebt; +@@ -254,10 +252,7 @@ contract MasterChefV2 { + manager.treasuryAddress(), + uGOVReward / uGOVDivider + ); +- pool.accuGOVPerShare = +- pool.accuGOVPerShare + +- ((uGOVReward) / (lpSupply * 1e6)); +- ++ pool.accuGOVPerShare = pool.accuGOVPerShare + uGOVReward / (lpSupply * 1e6); + pool.lastRewardBlock = block.number; + } + + +commit 06216c4fac5ada97b0322ceb5964e85cb6370f47 +Author: zapaz.eth +Date: Tue Aug 3 18:18:46 2021 +0200 + + fix + +diff --git a/contracts/MasterChefV2.sol b/contracts/MasterChefV2.sol +index d389726..975fcac 100644 +--- a/contracts/MasterChefV2.sol ++++ b/contracts/MasterChefV2.sol +@@ -185,7 +185,7 @@ contract MasterChefV2 { + uint256 uGOVReward = (multiplier * uGOVPerBlock) / 1e18; + accuGOVPerShare = + accuGOVPerShare + +- ((uGOVReward * 1e12) / lpSupply); ++ ((uGOVReward) / (lpSupply * 1e6)); + } + + return (user.amount * accuGOVPerShare) / 1e12 - user.rewardDebt; +@@ -256,7 +256,8 @@ contract MasterChefV2 { + ); + pool.accuGOVPerShare = + pool.accuGOVPerShare + +- ((uGOVReward * 1e12) / lpSupply); ++ ((uGOVReward) / (lpSupply * 1e6)); ++ + pool.lastRewardBlock = block.number; + } + + +commit 754e74cb1ab23bf9885091160826cef6c55a9ca4 +Author: Benjamin +Date: Thu Jul 22 16:30:26 2021 +0200 + + feat(incentives) adapt masterchef original + +diff --git a/contracts/MasterChefV2.sol b/contracts/MasterChefV2.sol +index c1461e8..d389726 100644 +--- a/contracts/MasterChefV2.sol ++++ b/contracts/MasterChefV2.sol +@@ -47,6 +47,7 @@ contract MasterChefV2 { + uint256 public uGOVmultiplier = 1e18; + uint256 public minPriceDiffToUpdateMultiplier = 1000000000000000; + uint256 public lastPrice = 1 ether; ++ uint256 public uGOVDivider; + // Info of each pool. + PoolInfo public pool; + // Info of each user that stakes LP tokens. +@@ -84,6 +85,7 @@ contract MasterChefV2 { + manager = UbiquityAlgorithmicDollarManager(_manager); + pool.lastRewardBlock = block.number; + pool.accuGOVPerShare = 0; // uint256(1e12); ++ uGOVDivider = 5; // 100 / 5 = 20% extra minted ugov for treasury + _updateUGOVMultiplier(); + } + +@@ -91,6 +93,14 @@ contract MasterChefV2 { + uGOVPerBlock = _uGOVPerBlock; + } + ++ // the bigger uGOVDivider is the less extra Ugov will be minted for the treasury ++ function setUGOVShareForTreasury(uint256 _uGOVDivider) ++ external ++ onlyTokenManager ++ { ++ uGOVDivider = _uGOVDivider; ++ } ++ + function setMinPriceDiffToUpdateMultiplier( + uint256 _minPriceDiffToUpdateMultiplier + ) external onlyTokenManager { +@@ -239,10 +249,10 @@ contract MasterChefV2 { + address(this), + uGOVReward + ); +- // mint another 20% for the treasury ++ // mint another x% for the treasury + IERC20Ubiquity(manager.governanceTokenAddress()).mint( + manager.treasuryAddress(), +- uGOVReward / 5 ++ uGOVReward / uGOVDivider + ); + pool.accuGOVPerShare = + pool.accuGOVPerShare + + +commit 552695c33894275c430d9e5faee0a619b5359b25 +Author: Benjamin +Date: Tue Jul 20 16:18:39 2021 +0200 + + chore(deploy) update deps and deploy scripts + +diff --git a/contracts/MasterChefV2.sol b/contracts/MasterChefV2.sol +index 141a23c..c1461e8 100644 +--- a/contracts/MasterChefV2.sol ++++ b/contracts/MasterChefV2.sol +@@ -106,8 +106,8 @@ contract MasterChefV2 { + BondingShareInfo storage bs = _bsInfo[_bondingShareID]; + _updatePool(); + if (bs.amount > 0) { +- uint256 pending = +- ((bs.amount * pool.accuGOVPerShare) / 1e12) - bs.rewardDebt; ++ uint256 pending = ((bs.amount * pool.accuGOVPerShare) / 1e12) - ++ bs.rewardDebt; + _safeUGOVTransfer(to, pending); + } + bs.amount += _amount; +@@ -125,8 +125,8 @@ contract MasterChefV2 { + BondingShareInfo storage bs = _bsInfo[_bondingShareID]; + require(bs.amount >= _amount, "MC: amount too high"); + _updatePool(); +- uint256 pending = +- ((bs.amount * pool.accuGOVPerShare) / 1e12) - bs.rewardDebt; ++ uint256 pending = ((bs.amount * pool.accuGOVPerShare) / 1e12) - ++ bs.rewardDebt; + // send UGOV to Bonding Share holder + + _safeUGOVTransfer(to, pending); +@@ -151,8 +151,8 @@ contract MasterChefV2 { + // calculate user reward + BondingShareInfo storage user = _bsInfo[bondingShareID]; + _updatePool(); +- uint256 pending = +- ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; ++ uint256 pending = ((user.amount * pool.accuGOVPerShare) / 1e12) - ++ user.rewardDebt; + _safeUGOVTransfer(msg.sender, pending); + user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; + return pending; +@@ -166,8 +166,8 @@ contract MasterChefV2 { + { + BondingShareInfo storage user = _bsInfo[bondingShareID]; + uint256 accuGOVPerShare = pool.accuGOVPerShare; +- uint256 lpSupply = +- IERC1155Ubiquity(manager.bondingShareAddress()).totalSupply(); ++ uint256 lpSupply = IERC1155Ubiquity(manager.bondingShareAddress()) ++ .totalSupply(); + + if (block.number > pool.lastRewardBlock && lpSupply != 0) { + uint256 multiplier = _getMultiplier(); +@@ -227,8 +227,8 @@ contract MasterChefV2 { + return; + } + _updateUGOVMultiplier(); +- uint256 lpSupply = +- IERC1155Ubiquity(manager.bondingShareAddress()).totalSupply(); ++ uint256 lpSupply = IERC1155Ubiquity(manager.bondingShareAddress()) ++ .totalSupply(); + if (lpSupply == 0) { + pool.lastRewardBlock = block.number; + return; + +commit 6acf9c18cd57f8897687e4b666a2b53c3f24c049 +Author: Benjamin +Date: Thu Jul 15 12:46:26 2021 +0200 + + feat(v2) crv reset + +diff --git a/contracts/MasterChefV2.sol b/contracts/MasterChefV2.sol +index 11b543f..141a23c 100644 +--- a/contracts/MasterChefV2.sol ++++ b/contracts/MasterChefV2.sol +@@ -110,7 +110,7 @@ contract MasterChefV2 { + ((bs.amount * pool.accuGOVPerShare) / 1e12) - bs.rewardDebt; + _safeUGOVTransfer(to, pending); + } +- bs.amount = bs.amount + _amount; ++ bs.amount += _amount; + bs.rewardDebt = (bs.amount * pool.accuGOVPerShare) / 1e12; + _totalShares += _amount; + emit Deposit(to, _amount, _bondingShareID); +@@ -130,7 +130,7 @@ contract MasterChefV2 { + // send UGOV to Bonding Share holder + + _safeUGOVTransfer(to, pending); +- bs.amount = bs.amount - _amount; ++ bs.amount -= _amount; + bs.rewardDebt = (bs.amount * pool.accuGOVPerShare) / 1e12; + _totalShares -= _amount; + emit Withdraw(to, _amount, _bondingShareID); + +commit 6e4c4cde35bb0e6fffc94076cae5de5e009de5e1 +Author: Benjamin +Date: Mon Jul 5 18:05:08 2021 +0200 + + feat(v2) fix lint + +diff --git a/contracts/MasterChefV2.sol b/contracts/MasterChefV2.sol +index fb0a516..11b543f 100644 +--- a/contracts/MasterChefV2.sol ++++ b/contracts/MasterChefV2.sol +@@ -14,8 +14,6 @@ contract MasterChefV2 { + using SafeERC20 for IERC20Ubiquity; + using SafeERC20 for IERC20; + +- uint256 private _totalShares; +- + // Info of each user. + struct BondingShareInfo { + uint256 amount; // bonding rights. +@@ -38,6 +36,8 @@ contract MasterChefV2 { + uint256 accuGOVPerShare; // Accumulated uGOVs per share, times 1e12. See below. + } + ++ uint256 private _totalShares; ++ + // Ubiquity Manager + UbiquityAlgorithmicDollarManager public manager; + +@@ -106,8 +106,8 @@ contract MasterChefV2 { + BondingShareInfo storage bs = _bsInfo[_bondingShareID]; + _updatePool(); + if (bs.amount > 0) { +- uint256 pending = ((bs.amount * pool.accuGOVPerShare) / 1e12) - +- bs.rewardDebt; ++ uint256 pending = ++ ((bs.amount * pool.accuGOVPerShare) / 1e12) - bs.rewardDebt; + _safeUGOVTransfer(to, pending); + } + bs.amount = bs.amount + _amount; +@@ -125,8 +125,8 @@ contract MasterChefV2 { + BondingShareInfo storage bs = _bsInfo[_bondingShareID]; + require(bs.amount >= _amount, "MC: amount too high"); + _updatePool(); +- uint256 pending = ((bs.amount * pool.accuGOVPerShare) / 1e12) - +- bs.rewardDebt; ++ uint256 pending = ++ ((bs.amount * pool.accuGOVPerShare) / 1e12) - bs.rewardDebt; + // send UGOV to Bonding Share holder + + _safeUGOVTransfer(to, pending); +@@ -151,8 +151,8 @@ contract MasterChefV2 { + // calculate user reward + BondingShareInfo storage user = _bsInfo[bondingShareID]; + _updatePool(); +- uint256 pending = ((user.amount * pool.accuGOVPerShare) / 1e12) - +- user.rewardDebt; ++ uint256 pending = ++ ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; + _safeUGOVTransfer(msg.sender, pending); + user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; + return pending; +@@ -166,8 +166,8 @@ contract MasterChefV2 { + { + BondingShareInfo storage user = _bsInfo[bondingShareID]; + uint256 accuGOVPerShare = pool.accuGOVPerShare; +- uint256 lpSupply = IERC1155Ubiquity(manager.bondingShareAddress()) +- .totalSupply(); ++ uint256 lpSupply = ++ IERC1155Ubiquity(manager.bondingShareAddress()).totalSupply(); + + if (block.number > pool.lastRewardBlock && lpSupply != 0) { + uint256 multiplier = _getMultiplier(); +@@ -216,7 +216,7 @@ contract MasterChefV2 { + + if (isPriceDiffEnough) { + uGOVmultiplier = IUbiquityFormulas(manager.formulasAddress()) +- .ugovMultiply(uGOVmultiplier, currentPrice); ++ .ugovMultiply(uGOVmultiplier, currentPrice); + lastPrice = currentPrice; + } + } +@@ -227,8 +227,8 @@ contract MasterChefV2 { + return; + } + _updateUGOVMultiplier(); +- uint256 lpSupply = IERC1155Ubiquity(manager.bondingShareAddress()) +- .totalSupply(); ++ uint256 lpSupply = ++ IERC1155Ubiquity(manager.bondingShareAddress()).totalSupply(); + if (lpSupply == 0) { + pool.lastRewardBlock = block.number; + return; + +commit 901d435436e9192a85edec89ec7c628980091793 +Author: Benjamin +Date: Mon Jul 5 16:26:14 2021 +0200 + + feat(v2) bonding v2 and updates + +diff --git a/contracts/MasterChefV2.sol b/contracts/MasterChefV2.sol +index e91d09a..fb0a516 100644 +--- a/contracts/MasterChefV2.sol ++++ b/contracts/MasterChefV2.sol +@@ -8,13 +8,17 @@ import "./interfaces/ITWAPOracle.sol"; + import "./BondingShareV2.sol"; + import "./interfaces/IUbiquityFormulas.sol"; + ++import "./interfaces/IERC1155Ubiquity.sol"; ++ + contract MasterChefV2 { + using SafeERC20 for IERC20Ubiquity; + using SafeERC20 for IERC20; ++ ++ uint256 private _totalShares; ++ + // Info of each user. +- struct UserInfo { +- bytes32 userID: // keccak256 of BS ID + UBQRights +- uint256 amount; // How many uAD-3CRV LP tokens the user has provided. ++ struct BondingShareInfo { ++ uint256 amount; // bonding rights. + uint256 rewardDebt; // Reward debt. See explanation below. + // + // We do some fancy math here. Basically, any point in time, the amount of uGOVs +@@ -46,11 +50,19 @@ contract MasterChefV2 { + // Info of each pool. + PoolInfo public pool; + // Info of each user that stakes LP tokens. +- mapping(address => UserInfo) public userInfo; ++ mapping(uint256 => BondingShareInfo) private _bsInfo; + +- event Deposit(address indexed user, uint256 amount); ++ event Deposit( ++ address indexed user, ++ uint256 amount, ++ uint256 indexed bondingShareId ++ ); + +- event Withdraw(address indexed user, uint256 amount); ++ event Withdraw( ++ address indexed user, ++ uint256 amount, ++ uint256 indexed bondingShareId ++ ); + + // ----------- Modifiers ----------- + modifier onlyTokenManager() { +@@ -86,46 +98,58 @@ contract MasterChefV2 { + } + + // Deposit LP tokens to MasterChef for uGOV allocation. +- function deposit(uint256 _amount, address sender) +- external +- onlyBondingContract +- { +- UserInfo storage user = userInfo[sender]; ++ function deposit( ++ address to, ++ uint256 _amount, ++ uint256 _bondingShareID ++ ) external onlyBondingContract { ++ BondingShareInfo storage bs = _bsInfo[_bondingShareID]; + _updatePool(); +- if (user.amount > 0) { +- uint256 pending = ((user.amount * pool.accuGOVPerShare) / 1e12) - +- user.rewardDebt; +- _safeUGOVTransfer(sender, pending); ++ if (bs.amount > 0) { ++ uint256 pending = ((bs.amount * pool.accuGOVPerShare) / 1e12) - ++ bs.rewardDebt; ++ _safeUGOVTransfer(to, pending); + } +- user.amount = user.amount + _amount; +- user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; +- emit Deposit(sender, _amount); ++ bs.amount = bs.amount + _amount; ++ bs.rewardDebt = (bs.amount * pool.accuGOVPerShare) / 1e12; ++ _totalShares += _amount; ++ emit Deposit(to, _amount, _bondingShareID); + } + + // Withdraw LP tokens from MasterChef. +- function withdraw(uint256 _amount, address sender) +- external +- onlyBondingContract +- { +- UserInfo storage user = userInfo[sender]; +- require(user.amount >= _amount, "MC: amount too high"); ++ function withdraw( ++ address to, ++ uint256 _amount, ++ uint256 _bondingShareID ++ ) external onlyBondingContract { ++ BondingShareInfo storage bs = _bsInfo[_bondingShareID]; ++ require(bs.amount >= _amount, "MC: amount too high"); + _updatePool(); +- uint256 pending = ((user.amount * pool.accuGOVPerShare) / 1e12) - +- user.rewardDebt; +- _safeUGOVTransfer(sender, pending); +- user.amount = user.amount - _amount; +- user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; +- emit Withdraw(sender, _amount); ++ uint256 pending = ((bs.amount * pool.accuGOVPerShare) / 1e12) - ++ bs.rewardDebt; ++ // send UGOV to Bonding Share holder ++ ++ _safeUGOVTransfer(to, pending); ++ bs.amount = bs.amount - _amount; ++ bs.rewardDebt = (bs.amount * pool.accuGOVPerShare) / 1e12; ++ _totalShares -= _amount; ++ emit Withdraw(to, _amount, _bondingShareID); + } + + /// @dev get pending uGOV rewards from MasterChef. + /// @return amount of pending rewards transfered to msg.sender + /// @notice only send pending rewards + function getRewards(uint256 bondingShareID) external returns (uint256) { +- // calculate user ID +- uint256 balance = BondingShareV2(manager.bondingShareAddress()).balanceOf(msg.sender, bondingShareID) +-uint256 rights = BondingShareV2(manager.bondingShareAddress()).balanceOf(msg.sender, bondingShareID) +- UserInfo storage user = userInfo[msg.sender]; ++ require( ++ IERC1155Ubiquity(manager.bondingShareAddress()).balanceOf( ++ msg.sender, ++ bondingShareID ++ ) == 1, ++ "MS: caller is not owner" ++ ); ++ ++ // calculate user reward ++ BondingShareInfo storage user = _bsInfo[bondingShareID]; + _updatePool(); + uint256 pending = ((user.amount * pool.accuGOVPerShare) / 1e12) - + user.rewardDebt; +@@ -135,8 +159,12 @@ uint256 rights = BondingShareV2(manager.bondingShareAddress()).balanceOf(msg.sen + } + + // View function to see pending uGOVs on frontend. +- function pendingUGOV(address _user) external view returns (uint256) { +- UserInfo storage user = userInfo[_user]; ++ function pendingUGOV(uint256 bondingShareID) ++ external ++ view ++ returns (uint256) ++ { ++ BondingShareInfo storage user = _bsInfo[bondingShareID]; + uint256 accuGOVPerShare = pool.accuGOVPerShare; + uint256 lpSupply = IERC1155Ubiquity(manager.bondingShareAddress()) + .totalSupply(); +@@ -153,6 +181,24 @@ uint256 rights = BondingShareV2(manager.bondingShareAddress()).balanceOf(msg.sen + return (user.amount * accuGOVPerShare) / 1e12 - user.rewardDebt; + } + ++ /** ++ * @dev get the amount of shares and the reward debt of a bonding share . ++ */ ++ function getBondingShareInfo(uint256 _id) ++ external ++ view ++ returns (uint256[2] memory) ++ { ++ return [_bsInfo[_id].amount, _bsInfo[_id].rewardDebt]; ++ } ++ ++ /** ++ * @dev Total amount of shares . ++ */ ++ function totalShares() external view virtual returns (uint256) { ++ return _totalShares; ++ } ++ + // UPDATE uGOV multiplier + function _updateUGOVMultiplier() internal { + // (1.05/(1+abs(1-TWAP_PRICE))) + +commit 9553d36cbe9c7f00f5e80bfedb5ff705bb3e7196 +Author: Benjamin +Date: Sun Jun 27 10:16:52 2021 +0200 + + feat(v2) add v2 + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChefV2.sol +similarity index 87% +copy from contracts/MasterChef.sol +copy to contracts/MasterChefV2.sol +index ae3a5de..e91d09a 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChefV2.sol +@@ -5,14 +5,15 @@ import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; + import "./interfaces/IERC20Ubiquity.sol"; + import "./UbiquityAlgorithmicDollarManager.sol"; + import "./interfaces/ITWAPOracle.sol"; +-import "./interfaces/IERC1155Ubiquity.sol"; ++import "./BondingShareV2.sol"; + import "./interfaces/IUbiquityFormulas.sol"; + +-contract MasterChef { ++contract MasterChefV2 { + using SafeERC20 for IERC20Ubiquity; + using SafeERC20 for IERC20; + // Info of each user. + struct UserInfo { ++ bytes32 userID: // keccak256 of BS ID + UBQRights + uint256 amount; // How many uAD-3CRV LP tokens the user has provided. + uint256 rewardDebt; // Reward debt. See explanation below. + // +@@ -92,15 +93,10 @@ contract MasterChef { + UserInfo storage user = userInfo[sender]; + _updatePool(); + if (user.amount > 0) { +- uint256 pending = +- ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; ++ uint256 pending = ((user.amount * pool.accuGOVPerShare) / 1e12) - ++ user.rewardDebt; + _safeUGOVTransfer(sender, pending); + } +- /* pool.lpToken.safeTransferFrom( +- address(msg.sender), +- address(this), +- _amount +- ); */ + user.amount = user.amount + _amount; + user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; + emit Deposit(sender, _amount); +@@ -114,23 +110,25 @@ contract MasterChef { + UserInfo storage user = userInfo[sender]; + require(user.amount >= _amount, "MC: amount too high"); + _updatePool(); +- uint256 pending = +- ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; ++ uint256 pending = ((user.amount * pool.accuGOVPerShare) / 1e12) - ++ user.rewardDebt; + _safeUGOVTransfer(sender, pending); + user.amount = user.amount - _amount; + user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; +- /* pool.lpToken.safeTransfer(msg.sender, _amount); */ + emit Withdraw(sender, _amount); + } + + /// @dev get pending uGOV rewards from MasterChef. + /// @return amount of pending rewards transfered to msg.sender + /// @notice only send pending rewards +- function getRewards() external returns (uint256) { ++ function getRewards(uint256 bondingShareID) external returns (uint256) { ++ // calculate user ID ++ uint256 balance = BondingShareV2(manager.bondingShareAddress()).balanceOf(msg.sender, bondingShareID) ++uint256 rights = BondingShareV2(manager.bondingShareAddress()).balanceOf(msg.sender, bondingShareID) + UserInfo storage user = userInfo[msg.sender]; + _updatePool(); +- uint256 pending = +- ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; ++ uint256 pending = ((user.amount * pool.accuGOVPerShare) / 1e12) - ++ user.rewardDebt; + _safeUGOVTransfer(msg.sender, pending); + user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; + return pending; +@@ -140,8 +138,8 @@ contract MasterChef { + function pendingUGOV(address _user) external view returns (uint256) { + UserInfo storage user = userInfo[_user]; + uint256 accuGOVPerShare = pool.accuGOVPerShare; +- uint256 lpSupply = +- IERC1155Ubiquity(manager.bondingShareAddress()).totalSupply(); ++ uint256 lpSupply = IERC1155Ubiquity(manager.bondingShareAddress()) ++ .totalSupply(); + + if (block.number > pool.lastRewardBlock && lpSupply != 0) { + uint256 multiplier = _getMultiplier(); +@@ -172,7 +170,7 @@ contract MasterChef { + + if (isPriceDiffEnough) { + uGOVmultiplier = IUbiquityFormulas(manager.formulasAddress()) +- .ugovMultiply(uGOVmultiplier, currentPrice); ++ .ugovMultiply(uGOVmultiplier, currentPrice); + lastPrice = currentPrice; + } + } +@@ -183,12 +181,8 @@ contract MasterChef { + return; + } + _updateUGOVMultiplier(); +- uint256 lpSupply = +- IERC1155Ubiquity(manager.bondingShareAddress()).totalSupply(); +- /* IERC20(manager.stableSwapMetaPoolAddress()).balanceOf( +- manager.bondingContractAddress() +- ); */ +- ++ uint256 lpSupply = IERC1155Ubiquity(manager.bondingShareAddress()) ++ .totalSupply(); + if (lpSupply == 0) { + pool.lastRewardBlock = block.number; + return; + +commit d59a14bd2ecab4b3d2e98eea5f36be00ab843716 +Author: アレクサンダー U B I Q U I T Y +Date: Fri Jun 4 15:03:01 2021 -0400 + + because travis made me rush this commit + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index 3c02c17..ae3a5de 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -195,12 +195,12 @@ contract MasterChef { + } + uint256 multiplier = _getMultiplier(); + uint256 uGOVReward = (multiplier * uGOVPerBlock) / 1e18; +- IERC20Ubiquity(manager.uGOVTokenAddress()).mint( ++ IERC20Ubiquity(manager.governanceTokenAddress()).mint( + address(this), + uGOVReward + ); + // mint another 20% for the treasury +- IERC20Ubiquity(manager.uGOVTokenAddress()).mint( ++ IERC20Ubiquity(manager.governanceTokenAddress()).mint( + manager.treasuryAddress(), + uGOVReward / 5 + ); +@@ -213,7 +213,7 @@ contract MasterChef { + // Safe uGOV transfer function, just in case if rounding + // error causes pool to not have enough uGOVs. + function _safeUGOVTransfer(address _to, uint256 _amount) internal { +- IERC20Ubiquity uGOV = IERC20Ubiquity(manager.uGOVTokenAddress()); ++ IERC20Ubiquity uGOV = IERC20Ubiquity(manager.governanceTokenAddress()); + uint256 uGOVBal = uGOV.balanceOf(address(this)); + if (_amount > uGOVBal) { + uGOV.safeTransfer(_to, uGOVBal); +@@ -229,7 +229,7 @@ contract MasterChef { + function _getTwapPrice() internal view returns (uint256) { + return + ITWAPOracle(manager.twapOracleAddress()).consult( +- manager.uADTokenAddress() ++ manager.dollarTokenAddress() + ); + } + } + +commit d824b69a7eafc6530b28029f6a6be5a9468146d0 +Author: Benjamin +Date: Wed May 19 12:21:09 2021 +0200 + + feat(ugov): mint 20% for treasury + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index df91f0a..3c02c17 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -199,6 +199,11 @@ contract MasterChef { + address(this), + uGOVReward + ); ++ // mint another 20% for the treasury ++ IERC20Ubiquity(manager.uGOVTokenAddress()).mint( ++ manager.treasuryAddress(), ++ uGOVReward / 5 ++ ); + pool.accuGOVPerShare = + pool.accuGOVPerShare + + ((uGOVReward * 1e12) / lpSupply); + +commit a4f3a291ac26f9c4104398ac2ff33139c7c1c6a1 +Author: Benjamin +Date: Fri May 7 16:18:30 2021 +0200 + + feat(ugov): add ugov incetive for bonding participants + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index f3a0069..df91f0a 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -84,38 +84,73 @@ contract MasterChef { + minPriceDiffToUpdateMultiplier = _minPriceDiffToUpdateMultiplier; + } + ++ // Deposit LP tokens to MasterChef for uGOV allocation. ++ function deposit(uint256 _amount, address sender) ++ external ++ onlyBondingContract ++ { ++ UserInfo storage user = userInfo[sender]; ++ _updatePool(); ++ if (user.amount > 0) { ++ uint256 pending = ++ ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; ++ _safeUGOVTransfer(sender, pending); ++ } ++ /* pool.lpToken.safeTransferFrom( ++ address(msg.sender), ++ address(this), ++ _amount ++ ); */ ++ user.amount = user.amount + _amount; ++ user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; ++ emit Deposit(sender, _amount); ++ } ++ ++ // Withdraw LP tokens from MasterChef. ++ function withdraw(uint256 _amount, address sender) ++ external ++ onlyBondingContract ++ { ++ UserInfo storage user = userInfo[sender]; ++ require(user.amount >= _amount, "MC: amount too high"); ++ _updatePool(); ++ uint256 pending = ++ ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; ++ _safeUGOVTransfer(sender, pending); ++ user.amount = user.amount - _amount; ++ user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; ++ /* pool.lpToken.safeTransfer(msg.sender, _amount); */ ++ emit Withdraw(sender, _amount); ++ } ++ ++ /// @dev get pending uGOV rewards from MasterChef. ++ /// @return amount of pending rewards transfered to msg.sender ++ /// @notice only send pending rewards ++ function getRewards() external returns (uint256) { ++ UserInfo storage user = userInfo[msg.sender]; ++ _updatePool(); ++ uint256 pending = ++ ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; ++ _safeUGOVTransfer(msg.sender, pending); ++ user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; ++ return pending; ++ } ++ + // View function to see pending uGOVs on frontend. + function pendingUGOV(address _user) external view returns (uint256) { + UserInfo storage user = userInfo[_user]; + uint256 accuGOVPerShare = pool.accuGOVPerShare; + uint256 lpSupply = + IERC1155Ubiquity(manager.bondingShareAddress()).totalSupply(); +- /* IERC20(manager.stableSwapMetaPoolAddress()).balanceOf( +- manager.bondingContractAddress() +- ); */ +- +- // console.log("accuGOVPerShare", accuGOVPerShare); +- // console.log("lpSupply", lpSupply); + + if (block.number > pool.lastRewardBlock && lpSupply != 0) { + uint256 multiplier = _getMultiplier(); + + uint256 uGOVReward = (multiplier * uGOVPerBlock) / 1e18; +- console.log( +- "## PENDING NEW MULTIPLIER multiplier:%s uGOVReward:%s", +- multiplier, +- uGOVReward +- ); + accuGOVPerShare = + accuGOVPerShare + + ((uGOVReward * 1e12) / lpSupply); +- +- // console.log("multiplier", multiplier); +- // console.log("uGOVReward", uGOVReward); + } +- // console.log("user.amount", user.amount); +- // console.log("user.rewardDebt", user.rewardDebt); +- // console.log("accuGOVPerShare", accuGOVPerShare); + + return (user.amount * accuGOVPerShare) / 1e12 - user.rewardDebt; + } +@@ -139,10 +174,6 @@ contract MasterChef { + uGOVmultiplier = IUbiquityFormulas(manager.formulasAddress()) + .ugovMultiply(uGOVmultiplier, currentPrice); + lastPrice = currentPrice; +- console.log( +- "## MULTIPLIER UPDATED uGOVmultiplier:%s", +- uGOVmultiplier +- ); + } + } + +@@ -164,11 +195,6 @@ contract MasterChef { + } + uint256 multiplier = _getMultiplier(); + uint256 uGOVReward = (multiplier * uGOVPerBlock) / 1e18; +- console.log( +- "## _updatePool WE ARE MINTING uGOVReward:%s uGOVPerBlock:%s", +- uGOVReward, +- uGOVPerBlock +- ); + IERC20Ubiquity(manager.uGOVTokenAddress()).mint( + address(this), + uGOVReward +@@ -179,64 +205,19 @@ contract MasterChef { + pool.lastRewardBlock = block.number; + } + +- // Deposit LP tokens to MasterChef for uGOV allocation. +- function deposit(uint256 _amount, address sender) +- external +- onlyBondingContract +- { +- UserInfo storage user = userInfo[sender]; +- _updatePool(); +- if (user.amount > 0) { +- uint256 pending = +- ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; +- _safeUGOVTransfer(sender, pending); ++ // Safe uGOV transfer function, just in case if rounding ++ // error causes pool to not have enough uGOVs. ++ function _safeUGOVTransfer(address _to, uint256 _amount) internal { ++ IERC20Ubiquity uGOV = IERC20Ubiquity(manager.uGOVTokenAddress()); ++ uint256 uGOVBal = uGOV.balanceOf(address(this)); ++ if (_amount > uGOVBal) { ++ uGOV.safeTransfer(_to, uGOVBal); ++ } else { ++ uGOV.safeTransfer(_to, _amount); + } +- /* pool.lpToken.safeTransferFrom( +- address(msg.sender), +- address(this), +- _amount +- ); */ +- user.amount = user.amount + _amount; +- user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; +- emit Deposit(sender, _amount); +- } +- +- // Withdraw LP tokens from MasterChef. +- function withdraw(uint256 _amount, address sender) +- external +- onlyBondingContract +- { +- UserInfo storage user = userInfo[sender]; +- require(user.amount >= _amount, "MC: amount too high"); +- _updatePool(); +- uint256 pending = +- ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; +- _safeUGOVTransfer(sender, pending); +- user.amount = user.amount - _amount; +- user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; +- /* pool.lpToken.safeTransfer(msg.sender, _amount); */ +- emit Withdraw(sender, _amount); +- } +- +- /// @dev get pending uGOV rewards from MasterChef. +- /// @return amount of pending rewards transfered to msg.sender +- /// @notice only send pending rewards +- function getRewards() external returns (uint256) { +- UserInfo storage user = userInfo[msg.sender]; +- _updatePool(); +- uint256 pending = +- ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; +- _safeUGOVTransfer(msg.sender, pending); +- user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; +- return pending; + } + + function _getMultiplier() internal view returns (uint256) { +- console.log( +- "## _getMultiplier numberOfBlockB:%s uGOVmultiplier:%s", +- block.number - pool.lastRewardBlock, +- uGOVmultiplier +- ); + return (block.number - pool.lastRewardBlock) * uGOVmultiplier; + } + +@@ -246,24 +227,4 @@ contract MasterChef { + manager.uADTokenAddress() + ); + } +- +- // Safe uGOV transfer function, just in case if rounding +- // error causes pool to not have enough uGOVs. +- function _safeUGOVTransfer(address _to, uint256 _amount) internal { +- IERC20Ubiquity uGOV = IERC20Ubiquity(manager.uGOVTokenAddress()); +- uint256 uGOVBal = uGOV.balanceOf(address(this)); +- +- console.log( +- "## _safeUGOVTransfer uGOVBal:%s _amount:%s uGOVmultiplier:%s ", +- uGOVBal, +- _amount, +- uGOVmultiplier +- ); +- if (_amount > uGOVBal) { +- uGOV.safeTransfer(_to, uGOVBal); +- } else { +- console.log("## ON TRASNFERE AMOUNT"); +- uGOV.safeTransfer(_to, _amount); +- } +- } + } + +commit 647ef3fd5d44f3da527426bf1c57286f3d94de80 +Author: Benjamin +Date: Wed May 5 23:09:18 2021 +0200 + + feat(masterchef): refacto + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index 9e0ac99..f3a0069 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -5,6 +5,7 @@ import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; + import "./interfaces/IERC20Ubiquity.sol"; + import "./UbiquityAlgorithmicDollarManager.sol"; + import "./interfaces/ITWAPOracle.sol"; ++import "./interfaces/IERC1155Ubiquity.sol"; + import "./interfaces/IUbiquityFormulas.sol"; + + contract MasterChef { +@@ -28,7 +29,6 @@ contract MasterChef { + } + // Info of each pool. + struct PoolInfo { +- IERC20 lpToken; // Address of uAD-3CRV LP token contract. + uint256 lastRewardBlock; // Last block number that uGOVs distribution occurs. + uint256 accuGOVPerShare; // Accumulated uGOVs per share, times 1e12. See below. + } +@@ -51,21 +51,24 @@ contract MasterChef { + + event Withdraw(address indexed user, uint256 amount); + +- event EmergencyWithdraw(address indexed user, uint256 amount); +- + // ----------- Modifiers ----------- + modifier onlyTokenManager() { + require( + manager.hasRole(manager.UBQ_TOKEN_MANAGER_ROLE(), msg.sender), +- "UBQ token: not manager" ++ "MasterChef: not UBQ manager" ++ ); ++ _; ++ } ++ modifier onlyBondingContract() { ++ require( ++ msg.sender == manager.bondingContractAddress(), ++ "MasterChef: not Bonding Contract" + ); + _; + } + + constructor(address _manager) { + manager = UbiquityAlgorithmicDollarManager(_manager); +- +- pool.lpToken = IERC20(manager.stableSwapMetaPoolAddress()); + pool.lastRewardBlock = block.number; + pool.accuGOVPerShare = 0; // uint256(1e12); + _updateUGOVMultiplier(); +@@ -85,7 +88,11 @@ contract MasterChef { + function pendingUGOV(address _user) external view returns (uint256) { + UserInfo storage user = userInfo[_user]; + uint256 accuGOVPerShare = pool.accuGOVPerShare; +- uint256 lpSupply = pool.lpToken.balanceOf(address(this)); ++ uint256 lpSupply = ++ IERC1155Ubiquity(manager.bondingShareAddress()).totalSupply(); ++ /* IERC20(manager.stableSwapMetaPoolAddress()).balanceOf( ++ manager.bondingContractAddress() ++ ); */ + + // console.log("accuGOVPerShare", accuGOVPerShare); + // console.log("lpSupply", lpSupply); +@@ -145,7 +152,11 @@ contract MasterChef { + return; + } + _updateUGOVMultiplier(); +- uint256 lpSupply = pool.lpToken.balanceOf(address(this)); ++ uint256 lpSupply = ++ IERC1155Ubiquity(manager.bondingShareAddress()).totalSupply(); ++ /* IERC20(manager.stableSwapMetaPoolAddress()).balanceOf( ++ manager.bondingContractAddress() ++ ); */ + + if (lpSupply == 0) { + pool.lastRewardBlock = block.number; +@@ -169,36 +180,42 @@ contract MasterChef { + } + + // Deposit LP tokens to MasterChef for uGOV allocation. +- function deposit(uint256 _amount) public { +- UserInfo storage user = userInfo[msg.sender]; ++ function deposit(uint256 _amount, address sender) ++ external ++ onlyBondingContract ++ { ++ UserInfo storage user = userInfo[sender]; + _updatePool(); + if (user.amount > 0) { + uint256 pending = + ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; +- _safeUGOVTransfer(msg.sender, pending); ++ _safeUGOVTransfer(sender, pending); + } +- pool.lpToken.safeTransferFrom( ++ /* pool.lpToken.safeTransferFrom( + address(msg.sender), + address(this), + _amount +- ); ++ ); */ + user.amount = user.amount + _amount; + user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; +- emit Deposit(msg.sender, _amount); ++ emit Deposit(sender, _amount); + } + + // Withdraw LP tokens from MasterChef. +- function withdraw(uint256 _amount) public { +- UserInfo storage user = userInfo[msg.sender]; ++ function withdraw(uint256 _amount, address sender) ++ external ++ onlyBondingContract ++ { ++ UserInfo storage user = userInfo[sender]; + require(user.amount >= _amount, "MC: amount too high"); + _updatePool(); + uint256 pending = + ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; +- _safeUGOVTransfer(msg.sender, pending); ++ _safeUGOVTransfer(sender, pending); + user.amount = user.amount - _amount; + user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; +- pool.lpToken.safeTransfer(address(msg.sender), _amount); +- emit Withdraw(msg.sender, _amount); ++ /* pool.lpToken.safeTransfer(msg.sender, _amount); */ ++ emit Withdraw(sender, _amount); + } + + /// @dev get pending uGOV rewards from MasterChef. +@@ -214,15 +231,6 @@ contract MasterChef { + return pending; + } + +- // Withdraw without caring about rewards. EMERGENCY ONLY. +- function emergencyWithdraw() public { +- UserInfo storage user = userInfo[msg.sender]; +- pool.lpToken.safeTransfer(address(msg.sender), user.amount); +- emit EmergencyWithdraw(msg.sender, user.amount); +- user.amount = 0; +- user.rewardDebt = 0; +- } +- + function _getMultiplier() internal view returns (uint256) { + console.log( + "## _getMultiplier numberOfBlockB:%s uGOVmultiplier:%s", + +commit 055f7180aba3fda3f86e30f6346a1e1ea416916a +Author: Benjamin +Date: Wed May 5 17:04:35 2021 +0200 + + feat(masterchef): improve tests + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index c8ac748..9e0ac99 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -37,9 +37,10 @@ contract MasterChef { + UbiquityAlgorithmicDollarManager public manager; + + // uGOV tokens created per block. +- uint256 public uGOVPerBlock = 1e12; ++ uint256 public uGOVPerBlock = 1e18; + // Bonus muliplier for early uGOV makers. + uint256 public uGOVmultiplier = 1e18; ++ uint256 public minPriceDiffToUpdateMultiplier = 1000000000000000; + uint256 public lastPrice = 1 ether; + // Info of each pool. + PoolInfo public pool; +@@ -74,6 +75,12 @@ contract MasterChef { + uGOVPerBlock = _uGOVPerBlock; + } + ++ function setMinPriceDiffToUpdateMultiplier( ++ uint256 _minPriceDiffToUpdateMultiplier ++ ) external onlyTokenManager { ++ minPriceDiffToUpdateMultiplier = _minPriceDiffToUpdateMultiplier; ++ } ++ + // View function to see pending uGOVs on frontend. + function pendingUGOV(address _user) external view returns (uint256) { + UserInfo storage user = userInfo[_user]; +@@ -84,14 +91,17 @@ contract MasterChef { + // console.log("lpSupply", lpSupply); + + if (block.number > pool.lastRewardBlock && lpSupply != 0) { +- uint256 multiplier = +- _getMultiplier(pool.lastRewardBlock, block.number); ++ uint256 multiplier = _getMultiplier(); + + uint256 uGOVReward = (multiplier * uGOVPerBlock) / 1e18; +- ++ console.log( ++ "## PENDING NEW MULTIPLIER multiplier:%s uGOVReward:%s", ++ multiplier, ++ uGOVReward ++ ); + accuGOVPerShare = +- ((accuGOVPerShare + uGOVReward) * 1e12) / +- lpSupply; ++ accuGOVPerShare + ++ ((uGOVReward * 1e12) / lpSupply); + + // console.log("multiplier", multiplier); + // console.log("uGOVReward", uGOVReward); +@@ -99,6 +109,7 @@ contract MasterChef { + // console.log("user.amount", user.amount); + // console.log("user.rewardDebt", user.rewardDebt); + // console.log("accuGOVPerShare", accuGOVPerShare); ++ + return (user.amount * accuGOVPerShare) / 1e12 - user.rewardDebt; + } + +@@ -106,14 +117,25 @@ contract MasterChef { + function _updateUGOVMultiplier() internal { + // (1.05/(1+abs(1-TWAP_PRICE))) + uint256 currentPrice = _getTwapPrice(); ++ ++ bool isPriceDiffEnough = false; + // a minimum price variation is needed to update the multiplier +- if ( +- currentPrice - lastPrice > 1000100000000000000 || +- lastPrice - currentPrice > 1000100000000000000 +- ) { ++ if (currentPrice > lastPrice) { ++ isPriceDiffEnough = ++ currentPrice - lastPrice > minPriceDiffToUpdateMultiplier; ++ } else { ++ isPriceDiffEnough = ++ lastPrice - currentPrice > minPriceDiffToUpdateMultiplier; ++ } ++ ++ if (isPriceDiffEnough) { + uGOVmultiplier = IUbiquityFormulas(manager.formulasAddress()) + .ugovMultiply(uGOVmultiplier, currentPrice); + lastPrice = currentPrice; ++ console.log( ++ "## MULTIPLIER UPDATED uGOVmultiplier:%s", ++ uGOVmultiplier ++ ); + } + } + +@@ -129,15 +151,20 @@ contract MasterChef { + pool.lastRewardBlock = block.number; + return; + } +- uint256 multiplier = _getMultiplier(pool.lastRewardBlock, block.number); +- uint256 uGOVReward = multiplier * uGOVPerBlock; ++ uint256 multiplier = _getMultiplier(); ++ uint256 uGOVReward = (multiplier * uGOVPerBlock) / 1e18; ++ console.log( ++ "## _updatePool WE ARE MINTING uGOVReward:%s uGOVPerBlock:%s", ++ uGOVReward, ++ uGOVPerBlock ++ ); + IERC20Ubiquity(manager.uGOVTokenAddress()).mint( + address(this), + uGOVReward + ); + pool.accuGOVPerShare = +- ((pool.accuGOVPerShare + uGOVReward) * 1e12) / +- lpSupply; ++ pool.accuGOVPerShare + ++ ((uGOVReward * 1e12) / lpSupply); + pool.lastRewardBlock = block.number; + } + +@@ -147,7 +174,7 @@ contract MasterChef { + _updatePool(); + if (user.amount > 0) { + uint256 pending = +- (user.amount * pool.accuGOVPerShare) / (1e12 - user.rewardDebt); ++ ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; + _safeUGOVTransfer(msg.sender, pending); + } + pool.lpToken.safeTransferFrom( +@@ -163,7 +190,7 @@ contract MasterChef { + // Withdraw LP tokens from MasterChef. + function withdraw(uint256 _amount) public { + UserInfo storage user = userInfo[msg.sender]; +- require(user.amount >= _amount, "withdraw: not good"); ++ require(user.amount >= _amount, "MC: amount too high"); + _updatePool(); + uint256 pending = + ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; +@@ -174,6 +201,19 @@ contract MasterChef { + emit Withdraw(msg.sender, _amount); + } + ++ /// @dev get pending uGOV rewards from MasterChef. ++ /// @return amount of pending rewards transfered to msg.sender ++ /// @notice only send pending rewards ++ function getRewards() external returns (uint256) { ++ UserInfo storage user = userInfo[msg.sender]; ++ _updatePool(); ++ uint256 pending = ++ ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; ++ _safeUGOVTransfer(msg.sender, pending); ++ user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; ++ return pending; ++ } ++ + // Withdraw without caring about rewards. EMERGENCY ONLY. + function emergencyWithdraw() public { + UserInfo storage user = userInfo[msg.sender]; +@@ -183,12 +223,13 @@ contract MasterChef { + user.rewardDebt = 0; + } + +- function _getMultiplier(uint256 _from, uint256 _to) +- internal +- view +- returns (uint256) +- { +- return (_to - _from) * uGOVmultiplier; ++ function _getMultiplier() internal view returns (uint256) { ++ console.log( ++ "## _getMultiplier numberOfBlockB:%s uGOVmultiplier:%s", ++ block.number - pool.lastRewardBlock, ++ uGOVmultiplier ++ ); ++ return (block.number - pool.lastRewardBlock) * uGOVmultiplier; + } + + function _getTwapPrice() internal view returns (uint256) { +@@ -203,9 +244,17 @@ contract MasterChef { + function _safeUGOVTransfer(address _to, uint256 _amount) internal { + IERC20Ubiquity uGOV = IERC20Ubiquity(manager.uGOVTokenAddress()); + uint256 uGOVBal = uGOV.balanceOf(address(this)); ++ ++ console.log( ++ "## _safeUGOVTransfer uGOVBal:%s _amount:%s uGOVmultiplier:%s ", ++ uGOVBal, ++ _amount, ++ uGOVmultiplier ++ ); + if (_amount > uGOVBal) { + uGOV.safeTransfer(_to, uGOVBal); + } else { ++ console.log("## ON TRASNFERE AMOUNT"); + uGOV.safeTransfer(_to, _amount); + } + } + +commit 1c7a843bc7da6d8c8c5ab6809ec73f1ddf3de543 +Author: Benjamin +Date: Tue May 4 09:40:15 2021 +0200 + + feat(bonding): update and improve tests + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index b71c524..c8ac748 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -8,8 +8,8 @@ import "./interfaces/ITWAPOracle.sol"; + import "./interfaces/IUbiquityFormulas.sol"; + + contract MasterChef { ++ using SafeERC20 for IERC20Ubiquity; + using SafeERC20 for IERC20; +- + // Info of each user. + struct UserInfo { + uint256 amount; // How many uAD-3CRV LP tokens the user has provided. +@@ -35,12 +35,12 @@ contract MasterChef { + + // Ubiquity Manager + UbiquityAlgorithmicDollarManager public manager; +- // The uGOV TOKEN! +- IERC20Ubiquity public uGOV; ++ + // uGOV tokens created per block. + uint256 public uGOVPerBlock = 1e12; + // Bonus muliplier for early uGOV makers. +- uint256 public uGOVmultiplier = 2e18; ++ uint256 public uGOVmultiplier = 1e18; ++ uint256 public lastPrice = 1 ether; + // Info of each pool. + PoolInfo public pool; + // Info of each user that stakes LP tokens. +@@ -56,23 +56,21 @@ contract MasterChef { + modifier onlyTokenManager() { + require( + manager.hasRole(manager.UBQ_TOKEN_MANAGER_ROLE(), msg.sender), +- "UBQ token: not minter" ++ "UBQ token: not manager" + ); + _; + } + + constructor(address _manager) { + manager = UbiquityAlgorithmicDollarManager(_manager); +- uGOV = IERC20Ubiquity(manager.uGOVTokenAddress()); ++ + pool.lpToken = IERC20(manager.stableSwapMetaPoolAddress()); + pool.lastRewardBlock = block.number; + pool.accuGOVPerShare = 0; // uint256(1e12); ++ _updateUGOVMultiplier(); + } + +- function setupUGOVPerBlock(uint256 _uGOVPerBlock) +- external +- onlyTokenManager +- { ++ function setUGOVPerBlock(uint256 _uGOVPerBlock) external onlyTokenManager { + uGOVPerBlock = _uGOVPerBlock; + } + +@@ -87,7 +85,7 @@ contract MasterChef { + + if (block.number > pool.lastRewardBlock && lpSupply != 0) { + uint256 multiplier = +- getMultiplier(pool.lastRewardBlock, block.number); ++ _getMultiplier(pool.lastRewardBlock, block.number); + + uint256 uGOVReward = (multiplier * uGOVPerBlock) / 1e18; + +@@ -105,26 +103,38 @@ contract MasterChef { + } + + // UPDATE uGOV multiplier +- function updateUGOVMultiplier() public { +- uGOVmultiplier = IUbiquityFormulas(manager.formulasAddress()) +- .ugovMultiply(uGOVmultiplier, getTwapPrice()); ++ function _updateUGOVMultiplier() internal { ++ // (1.05/(1+abs(1-TWAP_PRICE))) ++ uint256 currentPrice = _getTwapPrice(); ++ // a minimum price variation is needed to update the multiplier ++ if ( ++ currentPrice - lastPrice > 1000100000000000000 || ++ lastPrice - currentPrice > 1000100000000000000 ++ ) { ++ uGOVmultiplier = IUbiquityFormulas(manager.formulasAddress()) ++ .ugovMultiply(uGOVmultiplier, currentPrice); ++ lastPrice = currentPrice; ++ } + } + + // Update reward variables of the given pool to be up-to-date. +- function updatePool() public { ++ function _updatePool() internal { + if (block.number <= pool.lastRewardBlock) { + return; + } +- updateUGOVMultiplier(); ++ _updateUGOVMultiplier(); + uint256 lpSupply = pool.lpToken.balanceOf(address(this)); + + if (lpSupply == 0) { + pool.lastRewardBlock = block.number; + return; + } +- uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); ++ uint256 multiplier = _getMultiplier(pool.lastRewardBlock, block.number); + uint256 uGOVReward = multiplier * uGOVPerBlock; +- uGOV.mint(address(this), uGOVReward); ++ IERC20Ubiquity(manager.uGOVTokenAddress()).mint( ++ address(this), ++ uGOVReward ++ ); + pool.accuGOVPerShare = + ((pool.accuGOVPerShare + uGOVReward) * 1e12) / + lpSupply; +@@ -134,7 +144,7 @@ contract MasterChef { + // Deposit LP tokens to MasterChef for uGOV allocation. + function deposit(uint256 _amount) public { + UserInfo storage user = userInfo[msg.sender]; +- updatePool(); ++ _updatePool(); + if (user.amount > 0) { + uint256 pending = + (user.amount * pool.accuGOVPerShare) / (1e12 - user.rewardDebt); +@@ -154,7 +164,7 @@ contract MasterChef { + function withdraw(uint256 _amount) public { + UserInfo storage user = userInfo[msg.sender]; + require(user.amount >= _amount, "withdraw: not good"); +- updatePool(); ++ _updatePool(); + uint256 pending = + ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; + _safeUGOVTransfer(msg.sender, pending); +@@ -173,15 +183,15 @@ contract MasterChef { + user.rewardDebt = 0; + } + +- function getMultiplier(uint256 _from, uint256 _to) +- public ++ function _getMultiplier(uint256 _from, uint256 _to) ++ internal + view + returns (uint256) + { + return (_to - _from) * uGOVmultiplier; + } + +- function getTwapPrice() public view returns (uint256) { ++ function _getTwapPrice() internal view returns (uint256) { + return + ITWAPOracle(manager.twapOracleAddress()).consult( + manager.uADTokenAddress() +@@ -191,11 +201,12 @@ contract MasterChef { + // Safe uGOV transfer function, just in case if rounding + // error causes pool to not have enough uGOVs. + function _safeUGOVTransfer(address _to, uint256 _amount) internal { ++ IERC20Ubiquity uGOV = IERC20Ubiquity(manager.uGOVTokenAddress()); + uint256 uGOVBal = uGOV.balanceOf(address(this)); + if (_amount > uGOVBal) { +- uGOV.transfer(_to, uGOVBal); ++ uGOV.safeTransfer(_to, uGOVBal); + } else { +- uGOV.transfer(_to, _amount); ++ uGOV.safeTransfer(_to, _amount); + } + } + } + +commit ebea4a2d7a516ddde56dc5901971f9288dd5dd78 +Author: Alain Papazoglou +Date: Sat May 1 18:31:09 2021 +0200 + + fix(lint): fix lint pbs + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index b194dd8..b71c524 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -8,7 +8,6 @@ import "./interfaces/ITWAPOracle.sol"; + import "./interfaces/IUbiquityFormulas.sol"; + + contract MasterChef { +- UbiquityAlgorithmicDollarManager public manager; + using SafeERC20 for IERC20; + + // Info of each user. +@@ -33,6 +32,9 @@ contract MasterChef { + uint256 lastRewardBlock; // Last block number that uGOVs distribution occurs. + uint256 accuGOVPerShare; // Accumulated uGOVs per share, times 1e12. See below. + } ++ ++ // Ubiquity Manager ++ UbiquityAlgorithmicDollarManager public manager; + // The uGOV TOKEN! + IERC20Ubiquity public uGOV; + // uGOV tokens created per block. +@@ -74,27 +76,6 @@ contract MasterChef { + uGOVPerBlock = _uGOVPerBlock; + } + +- function getTwapPrice() public view returns (uint256) { +- return +- ITWAPOracle(manager.twapOracleAddress()).consult( +- manager.uADTokenAddress() +- ); +- } +- +- // UPDATE uGOV multiplier +- function updateUGOVMultiplier() public { +- uGOVmultiplier = IUbiquityFormulas(manager.formulasAddress()) +- .ugovMultiply(uGOVmultiplier, getTwapPrice()); +- } +- +- function getMultiplier(uint256 _from, uint256 _to) +- public +- view +- returns (uint256) +- { +- return (_to - _from) * uGOVmultiplier; +- } +- + // View function to see pending uGOVs on frontend. + function pendingUGOV(address _user) external view returns (uint256) { + UserInfo storage user = userInfo[_user]; +@@ -123,6 +104,12 @@ contract MasterChef { + return (user.amount * accuGOVPerShare) / 1e12 - user.rewardDebt; + } + ++ // UPDATE uGOV multiplier ++ function updateUGOVMultiplier() public { ++ uGOVmultiplier = IUbiquityFormulas(manager.formulasAddress()) ++ .ugovMultiply(uGOVmultiplier, getTwapPrice()); ++ } ++ + // Update reward variables of the given pool to be up-to-date. + function updatePool() public { + if (block.number <= pool.lastRewardBlock) { +@@ -151,7 +138,7 @@ contract MasterChef { + if (user.amount > 0) { + uint256 pending = + (user.amount * pool.accuGOVPerShare) / (1e12 - user.rewardDebt); +- safeUGOVTransfer(msg.sender, pending); ++ _safeUGOVTransfer(msg.sender, pending); + } + pool.lpToken.safeTransferFrom( + address(msg.sender), +@@ -170,7 +157,7 @@ contract MasterChef { + updatePool(); + uint256 pending = + ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; +- safeUGOVTransfer(msg.sender, pending); ++ _safeUGOVTransfer(msg.sender, pending); + user.amount = user.amount - _amount; + user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; + pool.lpToken.safeTransfer(address(msg.sender), _amount); +@@ -186,8 +173,24 @@ contract MasterChef { + user.rewardDebt = 0; + } + +- // Safe uGOV transfer function, just in case if rounding error causes pool to not have enough uGOVs. +- function safeUGOVTransfer(address _to, uint256 _amount) internal { ++ function getMultiplier(uint256 _from, uint256 _to) ++ public ++ view ++ returns (uint256) ++ { ++ return (_to - _from) * uGOVmultiplier; ++ } ++ ++ function getTwapPrice() public view returns (uint256) { ++ return ++ ITWAPOracle(manager.twapOracleAddress()).consult( ++ manager.uADTokenAddress() ++ ); ++ } ++ ++ // Safe uGOV transfer function, just in case if rounding ++ // error causes pool to not have enough uGOVs. ++ function _safeUGOVTransfer(address _to, uint256 _amount) internal { + uint256 uGOVBal = uGOV.balanceOf(address(this)); + if (_amount > uGOVBal) { + uGOV.transfer(_to, uGOVBal); + +commit 58c88a47b6464c474731c02e15b7d351923b1a3c +Author: Alain Papazoglou +Date: Sat May 1 13:28:19 2021 +0200 + + feat(formulas): change formula library to a contract + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index 89628d0..b194dd8 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -5,12 +5,11 @@ import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; + import "./interfaces/IERC20Ubiquity.sol"; + import "./UbiquityAlgorithmicDollarManager.sol"; + import "./interfaces/ITWAPOracle.sol"; +-import "./libs/UbiquityFormulas.sol"; ++import "./interfaces/IUbiquityFormulas.sol"; + + contract MasterChef { + UbiquityAlgorithmicDollarManager public manager; + using SafeERC20 for IERC20; +- using UbiquityFormulas for uint256; + + // Info of each user. + struct UserInfo { +@@ -84,7 +83,8 @@ contract MasterChef { + + // UPDATE uGOV multiplier + function updateUGOVMultiplier() public { +- uGOVmultiplier = uGOVmultiplier.ugovMultiply(getTwapPrice()); ++ uGOVmultiplier = IUbiquityFormulas(manager.formulasAddress()) ++ .ugovMultiply(uGOVmultiplier, getTwapPrice()); + } + + function getMultiplier(uint256 _from, uint256 _to) + +commit a31487295facdafadfea4e626b5c65fb3b8f1748 +Author: Alain Papazoglou +Date: Sat May 1 11:44:03 2021 +0200 + + fix(ugov): adjust constants dimensions + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index d6f530f..89628d0 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -99,18 +99,28 @@ contract MasterChef { + function pendingUGOV(address _user) external view returns (uint256) { + UserInfo storage user = userInfo[_user]; + uint256 accuGOVPerShare = pool.accuGOVPerShare; +- + uint256 lpSupply = pool.lpToken.balanceOf(address(this)); + ++ // console.log("accuGOVPerShare", accuGOVPerShare); ++ // console.log("lpSupply", lpSupply); ++ + if (block.number > pool.lastRewardBlock && lpSupply != 0) { + uint256 multiplier = + getMultiplier(pool.lastRewardBlock, block.number); +- uint256 uGOVReward = multiplier * uGOVPerBlock; ++ ++ uint256 uGOVReward = (multiplier * uGOVPerBlock) / 1e18; ++ + accuGOVPerShare = +- (accuGOVPerShare + uGOVReward) * +- (1e12 / lpSupply); ++ ((accuGOVPerShare + uGOVReward) * 1e12) / ++ lpSupply; ++ ++ // console.log("multiplier", multiplier); ++ // console.log("uGOVReward", uGOVReward); + } +- return user.amount * (accuGOVPerShare / 1e12) - user.rewardDebt; ++ // console.log("user.amount", user.amount); ++ // console.log("user.rewardDebt", user.rewardDebt); ++ // console.log("accuGOVPerShare", accuGOVPerShare); ++ return (user.amount * accuGOVPerShare) / 1e12 - user.rewardDebt; + } + + // Update reward variables of the given pool to be up-to-date. +@@ -129,8 +139,8 @@ contract MasterChef { + uint256 uGOVReward = multiplier * uGOVPerBlock; + uGOV.mint(address(this), uGOVReward); + pool.accuGOVPerShare = +- (pool.accuGOVPerShare + uGOVReward) * +- (1e12 / lpSupply); ++ ((pool.accuGOVPerShare + uGOVReward) * 1e12) / ++ lpSupply; + pool.lastRewardBlock = block.number; + } + + +commit 49809765261d85135011cbc667b820213fb8a23e +Author: Alain Papazoglou +Date: Fri Apr 30 22:53:15 2021 +0200 + + feat(ugov): add deposit and withdraw with tests (wip) + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index f52825d..d6f530f 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -36,20 +36,14 @@ contract MasterChef { + } + // The uGOV TOKEN! + IERC20Ubiquity public uGOV; +- // Block number when bonus uGOV period ends. +- uint256 public bonusEndBlock; + // uGOV tokens created per block. +- uint256 public uGOVPerBlock; ++ uint256 public uGOVPerBlock = 1e12; + // Bonus muliplier for early uGOV makers. +- uint256 public constant BONUS_MULTIPLIER = 10; +- // UGOV muliplier +- uint256 public uGOVmultiplier = 1; ++ uint256 public uGOVmultiplier = 2e18; + // Info of each pool. + PoolInfo public pool; + // Info of each user that stakes LP tokens. + mapping(address => UserInfo) public userInfo; +- // The block number when uGOV mining starts. +- uint256 public startBlock; + + event Deposit(address indexed user, uint256 amount); + +@@ -69,7 +63,9 @@ contract MasterChef { + constructor(address _manager) { + manager = UbiquityAlgorithmicDollarManager(_manager); + uGOV = IERC20Ubiquity(manager.uGOVTokenAddress()); +- pool.lpToken = IERC20Ubiquity(manager.curve3PoolTokenAddress()); ++ pool.lpToken = IERC20(manager.stableSwapMetaPoolAddress()); ++ pool.lastRewardBlock = block.number; ++ pool.accuGOVPerShare = 0; // uint256(1e12); + } + + function setupUGOVPerBlock(uint256 _uGOVPerBlock) +@@ -79,17 +75,6 @@ contract MasterChef { + uGOVPerBlock = _uGOVPerBlock; + } + +- function setupbonusEndBlock(uint256 _bonusEndBlock) +- external +- onlyTokenManager +- { +- bonusEndBlock = _bonusEndBlock; +- } +- +- function setupstartBlock(uint256 _startBlock) external onlyTokenManager { +- startBlock = _startBlock; +- } +- + function getTwapPrice() public view returns (uint256) { + return + ITWAPOracle(manager.twapOracleAddress()).consult( +@@ -98,9 +83,6 @@ contract MasterChef { + } + + // UPDATE uGOV multiplier +- // +- // ugov_mint_multiplier = ugov_mint_multiplier * (1.05/(1+abs(1-TWAP_PRICE))) +- // 5>=multiplier >=0.2 + function updateUGOVMultiplier() public { + uGOVmultiplier = uGOVmultiplier.ugovMultiply(getTwapPrice()); + } +@@ -110,22 +92,16 @@ contract MasterChef { + view + returns (uint256) + { +- if (_to <= bonusEndBlock) { +- return (_to - _from) * BONUS_MULTIPLIER; +- } else if (_from >= bonusEndBlock) { +- return _to - _from; +- } else { +- return +- ((bonusEndBlock - _from) * BONUS_MULTIPLIER) + +- (_to - bonusEndBlock); +- } ++ return (_to - _from) * uGOVmultiplier; + } + + // View function to see pending uGOVs on frontend. +- function pendinguGOV(address _user) external view returns (uint256) { ++ function pendingUGOV(address _user) external view returns (uint256) { + UserInfo storage user = userInfo[_user]; + uint256 accuGOVPerShare = pool.accuGOVPerShare; ++ + uint256 lpSupply = pool.lpToken.balanceOf(address(this)); ++ + if (block.number > pool.lastRewardBlock && lpSupply != 0) { + uint256 multiplier = + getMultiplier(pool.lastRewardBlock, block.number); +@@ -142,7 +118,9 @@ contract MasterChef { + if (block.number <= pool.lastRewardBlock) { + return; + } ++ updateUGOVMultiplier(); + uint256 lpSupply = pool.lpToken.balanceOf(address(this)); ++ + if (lpSupply == 0) { + pool.lastRewardBlock = block.number; + return; +@@ -163,7 +141,7 @@ contract MasterChef { + if (user.amount > 0) { + uint256 pending = + (user.amount * pool.accuGOVPerShare) / (1e12 - user.rewardDebt); +- safeuGOVTransfer(msg.sender, pending); ++ safeUGOVTransfer(msg.sender, pending); + } + pool.lpToken.safeTransferFrom( + address(msg.sender), +@@ -182,7 +160,7 @@ contract MasterChef { + updatePool(); + uint256 pending = + ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; +- safeuGOVTransfer(msg.sender, pending); ++ safeUGOVTransfer(msg.sender, pending); + user.amount = user.amount - _amount; + user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; + pool.lpToken.safeTransfer(address(msg.sender), _amount); +@@ -199,7 +177,7 @@ contract MasterChef { + } + + // Safe uGOV transfer function, just in case if rounding error causes pool to not have enough uGOVs. +- function safeuGOVTransfer(address _to, uint256 _amount) internal { ++ function safeUGOVTransfer(address _to, uint256 _amount) internal { + uint256 uGOVBal = uGOV.balanceOf(address(this)); + if (_amount > uGOVBal) { + uGOV.transfer(_to, uGOVBal); + +commit 4ac95a46f929613bc274460b4f63519a4d836091 +Author: Alain Papazoglou +Date: Fri Apr 30 13:25:20 2021 +0200 + + feat(ugov): add mint multiplier formula with tests + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +index 567f417..f52825d 100644 +--- a/contracts/MasterChef.sol ++++ b/contracts/MasterChef.sol +@@ -4,14 +4,17 @@ pragma solidity 0.8.3; + import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; + import "./interfaces/IERC20Ubiquity.sol"; + import "./UbiquityAlgorithmicDollarManager.sol"; ++import "./interfaces/ITWAPOracle.sol"; ++import "./libs/UbiquityFormulas.sol"; + + contract MasterChef { + UbiquityAlgorithmicDollarManager public manager; + using SafeERC20 for IERC20; ++ using UbiquityFormulas for uint256; + + // Info of each user. + struct UserInfo { +- uint256 amount; // How many LP tokens the user has provided. ++ uint256 amount; // How many uAD-3CRV LP tokens the user has provided. + uint256 rewardDebt; // Reward debt. See explanation below. + // + // We do some fancy math here. Basically, any point in time, the amount of uGOVs +@@ -27,27 +30,24 @@ contract MasterChef { + } + // Info of each pool. + struct PoolInfo { +- IERC20 lpToken; // Address of LP token contract. +- uint256 allocPoint; // How many allocation points assigned to this pool. uGOVs to distribute per block. ++ IERC20 lpToken; // Address of uAD-3CRV LP token contract. + uint256 lastRewardBlock; // Last block number that uGOVs distribution occurs. + uint256 accuGOVPerShare; // Accumulated uGOVs per share, times 1e12. See below. + } + // The uGOV TOKEN! + IERC20Ubiquity public uGOV; +- // Dev address. +- address public devaddr; + // Block number when bonus uGOV period ends. + uint256 public bonusEndBlock; + // uGOV tokens created per block. + uint256 public uGOVPerBlock; + // Bonus muliplier for early uGOV makers. + uint256 public constant BONUS_MULTIPLIER = 10; ++ // UGOV muliplier ++ uint256 public uGOVmultiplier = 1; + // Info of each pool. +- PoolInfo public poolInfo; ++ PoolInfo public pool; + // Info of each user that stakes LP tokens. + mapping(address => UserInfo) public userInfo; +- // Total allocation poitns. Must be the sum of all allocation points in all pools. +- uint256 public totalAllocPoint = 0; + // The block number when uGOV mining starts. + uint256 public startBlock; + +@@ -58,38 +58,53 @@ contract MasterChef { + event EmergencyWithdraw(address indexed user, uint256 amount); + + // ----------- Modifiers ----------- +- modifier onlyMinter() { ++ modifier onlyTokenManager() { + require( +- manager.hasRole(manager.UBQ_MINTER_ROLE(), msg.sender), ++ manager.hasRole(manager.UBQ_TOKEN_MANAGER_ROLE(), msg.sender), + "UBQ token: not minter" + ); + _; + } + +- constructor( +- address _manager // , +- ) // uint256 _uGOVPerBlock, +- // uint256 _startBlock, +- // uint256 _bonusEndBlock +- { ++ constructor(address _manager) { + manager = UbiquityAlgorithmicDollarManager(_manager); + uGOV = IERC20Ubiquity(manager.uGOVTokenAddress()); ++ pool.lpToken = IERC20Ubiquity(manager.curve3PoolTokenAddress()); ++ } + +- // uGOVPerBlock = _uGOVPerBlock; +- // bonusEndBlock = _bonusEndBlock; +- // startBlock = _startBlock; ++ function setupUGOVPerBlock(uint256 _uGOVPerBlock) ++ external ++ onlyTokenManager ++ { ++ uGOVPerBlock = _uGOVPerBlock; + } + +- // Update the given pool's uGOV allocation point. Can only be called by the owner. +- function set(uint256 _allocPoint, bool _withUpdate) public onlyMinter { +- if (_withUpdate) { +- updatePool(); +- } +- totalAllocPoint = totalAllocPoint - poolInfo.allocPoint + _allocPoint; +- poolInfo.allocPoint = _allocPoint; ++ function setupbonusEndBlock(uint256 _bonusEndBlock) ++ external ++ onlyTokenManager ++ { ++ bonusEndBlock = _bonusEndBlock; ++ } ++ ++ function setupstartBlock(uint256 _startBlock) external onlyTokenManager { ++ startBlock = _startBlock; ++ } ++ ++ function getTwapPrice() public view returns (uint256) { ++ return ++ ITWAPOracle(manager.twapOracleAddress()).consult( ++ manager.uADTokenAddress() ++ ); ++ } ++ ++ // UPDATE uGOV multiplier ++ // ++ // ugov_mint_multiplier = ugov_mint_multiplier * (1.05/(1+abs(1-TWAP_PRICE))) ++ // 5>=multiplier >=0.2 ++ function updateUGOVMultiplier() public { ++ uGOVmultiplier = uGOVmultiplier.ugovMultiply(getTwapPrice()); + } + +- // Return reward multiplier over the given _from to _to block. + function getMultiplier(uint256 _from, uint256 _to) + public + view +@@ -108,16 +123,13 @@ contract MasterChef { + + // View function to see pending uGOVs on frontend. + function pendinguGOV(address _user) external view returns (uint256) { +- PoolInfo storage pool = poolInfo; + UserInfo storage user = userInfo[_user]; + uint256 accuGOVPerShare = pool.accuGOVPerShare; + uint256 lpSupply = pool.lpToken.balanceOf(address(this)); + if (block.number > pool.lastRewardBlock && lpSupply != 0) { + uint256 multiplier = + getMultiplier(pool.lastRewardBlock, block.number); +- uint256 uGOVReward = +- (multiplier * uGOVPerBlock) * +- (pool.allocPoint / totalAllocPoint); ++ uint256 uGOVReward = multiplier * uGOVPerBlock; + accuGOVPerShare = + (accuGOVPerShare + uGOVReward) * + (1e12 / lpSupply); +@@ -127,7 +139,6 @@ contract MasterChef { + + // Update reward variables of the given pool to be up-to-date. + function updatePool() public { +- PoolInfo storage pool = poolInfo; + if (block.number <= pool.lastRewardBlock) { + return; + } +@@ -137,8 +148,7 @@ contract MasterChef { + return; + } + uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); +- uint256 uGOVReward = +- multiplier * uGOVPerBlock * (pool.allocPoint / totalAllocPoint); ++ uint256 uGOVReward = multiplier * uGOVPerBlock; + uGOV.mint(address(this), uGOVReward); + pool.accuGOVPerShare = + (pool.accuGOVPerShare + uGOVReward) * +@@ -148,7 +158,6 @@ contract MasterChef { + + // Deposit LP tokens to MasterChef for uGOV allocation. + function deposit(uint256 _amount) public { +- PoolInfo storage pool = poolInfo; + UserInfo storage user = userInfo[msg.sender]; + updatePool(); + if (user.amount > 0) { +@@ -168,7 +177,6 @@ contract MasterChef { + + // Withdraw LP tokens from MasterChef. + function withdraw(uint256 _amount) public { +- PoolInfo storage pool = poolInfo; + UserInfo storage user = userInfo[msg.sender]; + require(user.amount >= _amount, "withdraw: not good"); + updatePool(); +@@ -183,7 +191,6 @@ contract MasterChef { + + // Withdraw without caring about rewards. EMERGENCY ONLY. + function emergencyWithdraw() public { +- PoolInfo storage pool = poolInfo; + UserInfo storage user = userInfo[msg.sender]; + pool.lpToken.safeTransfer(address(msg.sender), user.amount); + emit EmergencyWithdraw(msg.sender, user.amount); + +commit ed88ecbd410284e437b210edfa2c4deee0ebbbce +Author: Alain Papazoglou +Date: Thu Apr 29 19:29:25 2021 +0200 + + feat(ugov): init MasterChef and first tests (wip) + +diff --git a/contracts/MasterChef.sol b/contracts/MasterChef.sol +new file mode 100644 +index 0000000..567f417 +--- /dev/null ++++ b/contracts/MasterChef.sol +@@ -0,0 +1,203 @@ ++// SPDX-License-Identifier: MIT ++pragma solidity 0.8.3; ++ ++import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; ++import "./interfaces/IERC20Ubiquity.sol"; ++import "./UbiquityAlgorithmicDollarManager.sol"; ++ ++contract MasterChef { ++ UbiquityAlgorithmicDollarManager public manager; ++ using SafeERC20 for IERC20; ++ ++ // Info of each user. ++ struct UserInfo { ++ uint256 amount; // How many LP tokens the user has provided. ++ uint256 rewardDebt; // Reward debt. See explanation below. ++ // ++ // We do some fancy math here. Basically, any point in time, the amount of uGOVs ++ // entitled to a user but is pending to be distributed is: ++ // ++ // pending reward = (user.amount * pool.accuGOVPerShare) - user.rewardDebt ++ // ++ // Whenever a user deposits or withdraws LP tokens to a pool. Here's what happens: ++ // 1. The pool's `accuGOVPerShare` (and `lastRewardBlock`) gets updated. ++ // 2. User receives the pending reward sent to his/her address. ++ // 3. User's `amount` gets updated. ++ // 4. User's `rewardDebt` gets updated. ++ } ++ // Info of each pool. ++ struct PoolInfo { ++ IERC20 lpToken; // Address of LP token contract. ++ uint256 allocPoint; // How many allocation points assigned to this pool. uGOVs to distribute per block. ++ uint256 lastRewardBlock; // Last block number that uGOVs distribution occurs. ++ uint256 accuGOVPerShare; // Accumulated uGOVs per share, times 1e12. See below. ++ } ++ // The uGOV TOKEN! ++ IERC20Ubiquity public uGOV; ++ // Dev address. ++ address public devaddr; ++ // Block number when bonus uGOV period ends. ++ uint256 public bonusEndBlock; ++ // uGOV tokens created per block. ++ uint256 public uGOVPerBlock; ++ // Bonus muliplier for early uGOV makers. ++ uint256 public constant BONUS_MULTIPLIER = 10; ++ // Info of each pool. ++ PoolInfo public poolInfo; ++ // Info of each user that stakes LP tokens. ++ mapping(address => UserInfo) public userInfo; ++ // Total allocation poitns. Must be the sum of all allocation points in all pools. ++ uint256 public totalAllocPoint = 0; ++ // The block number when uGOV mining starts. ++ uint256 public startBlock; ++ ++ event Deposit(address indexed user, uint256 amount); ++ ++ event Withdraw(address indexed user, uint256 amount); ++ ++ event EmergencyWithdraw(address indexed user, uint256 amount); ++ ++ // ----------- Modifiers ----------- ++ modifier onlyMinter() { ++ require( ++ manager.hasRole(manager.UBQ_MINTER_ROLE(), msg.sender), ++ "UBQ token: not minter" ++ ); ++ _; ++ } ++ ++ constructor( ++ address _manager // , ++ ) // uint256 _uGOVPerBlock, ++ // uint256 _startBlock, ++ // uint256 _bonusEndBlock ++ { ++ manager = UbiquityAlgorithmicDollarManager(_manager); ++ uGOV = IERC20Ubiquity(manager.uGOVTokenAddress()); ++ ++ // uGOVPerBlock = _uGOVPerBlock; ++ // bonusEndBlock = _bonusEndBlock; ++ // startBlock = _startBlock; ++ } ++ ++ // Update the given pool's uGOV allocation point. Can only be called by the owner. ++ function set(uint256 _allocPoint, bool _withUpdate) public onlyMinter { ++ if (_withUpdate) { ++ updatePool(); ++ } ++ totalAllocPoint = totalAllocPoint - poolInfo.allocPoint + _allocPoint; ++ poolInfo.allocPoint = _allocPoint; ++ } ++ ++ // Return reward multiplier over the given _from to _to block. ++ function getMultiplier(uint256 _from, uint256 _to) ++ public ++ view ++ returns (uint256) ++ { ++ if (_to <= bonusEndBlock) { ++ return (_to - _from) * BONUS_MULTIPLIER; ++ } else if (_from >= bonusEndBlock) { ++ return _to - _from; ++ } else { ++ return ++ ((bonusEndBlock - _from) * BONUS_MULTIPLIER) + ++ (_to - bonusEndBlock); ++ } ++ } ++ ++ // View function to see pending uGOVs on frontend. ++ function pendinguGOV(address _user) external view returns (uint256) { ++ PoolInfo storage pool = poolInfo; ++ UserInfo storage user = userInfo[_user]; ++ uint256 accuGOVPerShare = pool.accuGOVPerShare; ++ uint256 lpSupply = pool.lpToken.balanceOf(address(this)); ++ if (block.number > pool.lastRewardBlock && lpSupply != 0) { ++ uint256 multiplier = ++ getMultiplier(pool.lastRewardBlock, block.number); ++ uint256 uGOVReward = ++ (multiplier * uGOVPerBlock) * ++ (pool.allocPoint / totalAllocPoint); ++ accuGOVPerShare = ++ (accuGOVPerShare + uGOVReward) * ++ (1e12 / lpSupply); ++ } ++ return user.amount * (accuGOVPerShare / 1e12) - user.rewardDebt; ++ } ++ ++ // Update reward variables of the given pool to be up-to-date. ++ function updatePool() public { ++ PoolInfo storage pool = poolInfo; ++ if (block.number <= pool.lastRewardBlock) { ++ return; ++ } ++ uint256 lpSupply = pool.lpToken.balanceOf(address(this)); ++ if (lpSupply == 0) { ++ pool.lastRewardBlock = block.number; ++ return; ++ } ++ uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); ++ uint256 uGOVReward = ++ multiplier * uGOVPerBlock * (pool.allocPoint / totalAllocPoint); ++ uGOV.mint(address(this), uGOVReward); ++ pool.accuGOVPerShare = ++ (pool.accuGOVPerShare + uGOVReward) * ++ (1e12 / lpSupply); ++ pool.lastRewardBlock = block.number; ++ } ++ ++ // Deposit LP tokens to MasterChef for uGOV allocation. ++ function deposit(uint256 _amount) public { ++ PoolInfo storage pool = poolInfo; ++ UserInfo storage user = userInfo[msg.sender]; ++ updatePool(); ++ if (user.amount > 0) { ++ uint256 pending = ++ (user.amount * pool.accuGOVPerShare) / (1e12 - user.rewardDebt); ++ safeuGOVTransfer(msg.sender, pending); ++ } ++ pool.lpToken.safeTransferFrom( ++ address(msg.sender), ++ address(this), ++ _amount ++ ); ++ user.amount = user.amount + _amount; ++ user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; ++ emit Deposit(msg.sender, _amount); ++ } ++ ++ // Withdraw LP tokens from MasterChef. ++ function withdraw(uint256 _amount) public { ++ PoolInfo storage pool = poolInfo; ++ UserInfo storage user = userInfo[msg.sender]; ++ require(user.amount >= _amount, "withdraw: not good"); ++ updatePool(); ++ uint256 pending = ++ ((user.amount * pool.accuGOVPerShare) / 1e12) - user.rewardDebt; ++ safeuGOVTransfer(msg.sender, pending); ++ user.amount = user.amount - _amount; ++ user.rewardDebt = (user.amount * pool.accuGOVPerShare) / 1e12; ++ pool.lpToken.safeTransfer(address(msg.sender), _amount); ++ emit Withdraw(msg.sender, _amount); ++ } ++ ++ // Withdraw without caring about rewards. EMERGENCY ONLY. ++ function emergencyWithdraw() public { ++ PoolInfo storage pool = poolInfo; ++ UserInfo storage user = userInfo[msg.sender]; ++ pool.lpToken.safeTransfer(address(msg.sender), user.amount); ++ emit EmergencyWithdraw(msg.sender, user.amount); ++ user.amount = 0; ++ user.rewardDebt = 0; ++ } ++ ++ // Safe uGOV transfer function, just in case if rounding error causes pool to not have enough uGOVs. ++ function safeuGOVTransfer(address _to, uint256 _amount) internal { ++ uint256 uGOVBal = uGOV.balanceOf(address(this)); ++ if (_amount > uGOVBal) { ++ uGOV.transfer(_to, uGOVBal); ++ } else { ++ uGOV.transfer(_to, _amount); ++ } ++ } ++} diff --git a/allResults.json b/allResults.json new file mode 100644 index 0000000..d943447 --- /dev/null +++ b/allResults.json @@ -0,0 +1 @@ +[{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13011873","block":13011876,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"913368109395109831686","lastRewardBlock":"13011873","block":13011877,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"611276273141238246941","lastRewardBlock":"13011873","block":13011878,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"0","lastRewardBlock":"13011873","block":13011879,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"0","lastRewardBlock":"13011873","block":13011880,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"0","lastRewardBlock":"13011873","block":13011881,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13011873","block":13011875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"913368109395109831686","lastRewardBlock":"13011873","block":13011876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"611276273141238246941","lastRewardBlock":"13011873","block":13011877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"0","lastRewardBlock":"13011873","block":13011878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"0","lastRewardBlock":"13011873","block":13011879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"0","lastRewardBlock":"13011873","block":13011880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13019897","block":13021875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"913368109395109831686","lastRewardBlock":"13019897","block":13021876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"611276273141238246941","lastRewardBlock":"13019897","block":13021877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"0","lastRewardBlock":"13019897","block":13021878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"537280361095585255111","lastRewardBlock":"13019897","block":13021879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"0","lastRewardBlock":"13019897","block":13021880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13027009","block":13031875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"913368109395109831686","lastRewardBlock":"13027009","block":13031876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"611276273141238246941","lastRewardBlock":"13027009","block":13031877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"0","lastRewardBlock":"13027009","block":13031878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"537280361095585255111","lastRewardBlock":"13027009","block":13031879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"0","lastRewardBlock":"13027009","block":13031880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13038997","block":13041875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"913368109395109831686","lastRewardBlock":"13038997","block":13041876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"611276273141238246941","lastRewardBlock":"13038997","block":13041877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"0","lastRewardBlock":"13038997","block":13041878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"537280361095585255111","lastRewardBlock":"13038997","block":13041879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"0","lastRewardBlock":"13038997","block":13041880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13038997","block":13051875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"913368109395109831686","lastRewardBlock":"13038997","block":13051876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"611276273141238246941","lastRewardBlock":"13038997","block":13051877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"0","lastRewardBlock":"13038997","block":13051878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"537280361095585255111","lastRewardBlock":"13038997","block":13051879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"0","lastRewardBlock":"13038997","block":13051880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13055932","block":13061875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"913368109395109831686","lastRewardBlock":"13055932","block":13061876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"611276273141238246941","lastRewardBlock":"13055932","block":13061877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13055932","block":13061878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"2192018818969529434116","lastRewardBlock":"13055932","block":13061879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"0","lastRewardBlock":"13055932","block":13061880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13064458","block":13071875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"913368109395109831686","lastRewardBlock":"13064458","block":13071876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"611276273141238246941","lastRewardBlock":"13064458","block":13071877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13064458","block":13071878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"2192018818969529434116","lastRewardBlock":"13064458","block":13071879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"0","lastRewardBlock":"13064458","block":13071880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13080604","block":13081875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13080604","block":13081876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"611276273141238246941","lastRewardBlock":"13080604","block":13081877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13080604","block":13081878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"2192018818969529434116","lastRewardBlock":"13080604","block":13081879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13080604","block":13081880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13086698","block":13091875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13086698","block":13091876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13086698","block":13091877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13086698","block":13091878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"2192018818969529434116","lastRewardBlock":"13086698","block":13091879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13086698","block":13091880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13099595","block":13101875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13099595","block":13101876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13099595","block":13101877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13099595","block":13101878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"2192018818969529434116","lastRewardBlock":"13099595","block":13101879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13099595","block":13101880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13099595","block":13111875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13099595","block":13111876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13099595","block":13111877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13099595","block":13111878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"2192018818969529434116","lastRewardBlock":"13099595","block":13111879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13099595","block":13111880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13117583","block":13121875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13117583","block":13121876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13117583","block":13121877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13117583","block":13121878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"3908960146506483690804","lastRewardBlock":"13117583","block":13121879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13117583","block":13121880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13126252","block":13131875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13126252","block":13131876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13126252","block":13131877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13126252","block":13131878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"3908960146506483690804","lastRewardBlock":"13126252","block":13131879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13126252","block":13131880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13136573","block":13141875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13136573","block":13141876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13136573","block":13141877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13136573","block":13141878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"3908960146506483690804","lastRewardBlock":"13136573","block":13141879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13136573","block":13141880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13136573","block":13151875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13136573","block":13151876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13136573","block":13151877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13136573","block":13151878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"3908960146506483690804","lastRewardBlock":"13136573","block":13151879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13136573","block":13151880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13136573","block":13161875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13136573","block":13161876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13136573","block":13161877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13136573","block":13161878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"3908960146506483690804","lastRewardBlock":"13136573","block":13161879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13136573","block":13161880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13136573","block":13171875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13136573","block":13171876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13136573","block":13171877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13136573","block":13171878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"3908960146506483690804","lastRewardBlock":"13136573","block":13171879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13136573","block":13171880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13136573","block":13181875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13136573","block":13181876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13136573","block":13181877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13136573","block":13181878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"3908960146506483690804","lastRewardBlock":"13136573","block":13181879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13136573","block":13181880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13188621","block":13191875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13188621","block":13191876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13188621","block":13191877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13188621","block":13191878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13188621","block":13191879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13188621","block":13191880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13200233","block":13201875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13200233","block":13201876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13200233","block":13201877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13200233","block":13201878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13200233","block":13201879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13200233","block":13201880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13211731","block":13211875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13211731","block":13211876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13211731","block":13211877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13211731","block":13211878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13211731","block":13211879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13211731","block":13211880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13218301","block":13221875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13218301","block":13221876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"28086199663001044887154","lastRewardBlock":"13218301","block":13221877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13218301","block":13221878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13218301","block":13221879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13218301","block":13221880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13222568","block":13231875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13222568","block":13231876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"28086199663001044887154","lastRewardBlock":"13222568","block":13231877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13222568","block":13231878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13222568","block":13231879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13222568","block":13231880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13222568","block":13241875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13222568","block":13241876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"28086199663001044887154","lastRewardBlock":"13222568","block":13241877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13222568","block":13241878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13222568","block":13241879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13222568","block":13241880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13251599","block":13251875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13251599","block":13251876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"31108666760360216657267","lastRewardBlock":"13251599","block":13251877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13251599","block":13251878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13251599","block":13251879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13251599","block":13251880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13252206","block":13261875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13252206","block":13261876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"31108666760360216657267","lastRewardBlock":"13252206","block":13261877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13252206","block":13261878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13252206","block":13261879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13252206","block":13261880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13269074","block":13271875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13269074","block":13271876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"31108666760360216657267","lastRewardBlock":"13269074","block":13271877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13269074","block":13271878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13269074","block":13271879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13269074","block":13271880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13281550","block":13281875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13281550","block":13281876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"31108666760360216657267","lastRewardBlock":"13281550","block":13281877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13281550","block":13281878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13281550","block":13281879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13281550","block":13281880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13289178","block":13291875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13289178","block":13291876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"31108666760360216657267","lastRewardBlock":"13289178","block":13291877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13289178","block":13291878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13289178","block":13291879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13289178","block":13291880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13299269","block":13301875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13299269","block":13301876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"35890556127844989142890","lastRewardBlock":"13299269","block":13301877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13299269","block":13301878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13299269","block":13301879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13299269","block":13301880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13307768","block":13311875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13307768","block":13311876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"35890556127844989142890","lastRewardBlock":"13307768","block":13311877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13307768","block":13311878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13307768","block":13311879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13307768","block":13311880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13321661","block":13321875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13321661","block":13321876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"38239250907570123122819","lastRewardBlock":"13321661","block":13321877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13321661","block":13321878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13321661","block":13321879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13321661","block":13321880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13331139","block":13331875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13331139","block":13331876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"38239250907570123122819","lastRewardBlock":"13331139","block":13331877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13331139","block":13331878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13331139","block":13331879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13331139","block":13331880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13331139","block":13341875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13331139","block":13341876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"38239250907570123122819","lastRewardBlock":"13331139","block":13341877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13331139","block":13341878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13331139","block":13341879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13331139","block":13341880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13346807","block":13351875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13346807","block":13351876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"38239250907570123122819","lastRewardBlock":"13346807","block":13351877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13346807","block":13351878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13346807","block":13351879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13346807","block":13351880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13346807","block":13361875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13346807","block":13361876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"38239250907570123122819","lastRewardBlock":"13346807","block":13361877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13346807","block":13361878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13346807","block":13361879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13346807","block":13361880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13362604","block":13371875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13362604","block":13371876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"38239250907570123122819","lastRewardBlock":"13362604","block":13371877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13362604","block":13371878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13362604","block":13371879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13362604","block":13371880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13378776","block":13381875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13378776","block":13381876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13378776","block":13381877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13378776","block":13381878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13378776","block":13381879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13378776","block":13381880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13383651","block":13391875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13383651","block":13391876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13383651","block":13391877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13383651","block":13391879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13383651","block":13391880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13383651","block":13401875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13383651","block":13401876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13383651","block":13401877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13383651","block":13401879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13383651","block":13401880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13383651","block":13411875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13383651","block":13411876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13383651","block":13411877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13383651","block":13411879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13383651","block":13411880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13383651","block":13421875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13383651","block":13421876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13383651","block":13421877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13383651","block":13421879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13383651","block":13421880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13383651","block":13431875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13383651","block":13431876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13383651","block":13431877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13383651","block":13431879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13383651","block":13431880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13383651","block":13441875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13383651","block":13441876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13383651","block":13441877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13383651","block":13441879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13383651","block":13441880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13451507","block":13451875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13451507","block":13451876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13451507","block":13451877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13451507","block":13451879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13451507","block":13451880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13451507","block":13461875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13451507","block":13461876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13451507","block":13461877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13451507","block":13461879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13451507","block":13461880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13451507","block":13471875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13451507","block":13471876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13451507","block":13471877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13451507","block":13471879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13451507","block":13471880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13481875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13481876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13481877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13481879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13481880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13491875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13491876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13491877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13491879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13491880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13501875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13501876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13501877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13501879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13501880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13511875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13511876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13511877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13511879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13511880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13521875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13521876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13521877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13521879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13521880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13531875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13531876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13531877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13531879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13531880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13541875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13541876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13541877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13541879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13541880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13551875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13551876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13551877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13551879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13551880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13561875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13561876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13561877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13561879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13561880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13571875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13571876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13571877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13571879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13571880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13581875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13581876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13581877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13581879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13581880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13591875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13591876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13591877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13591879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13591880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13600240","block":13601875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13600240","block":13601876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13600240","block":13601877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13600240","block":13601879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13600240","block":13601880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13600240","block":13611875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13600240","block":13611876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13600240","block":13611877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13600240","block":13611879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13600240","block":13611880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13600240","block":13621875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13600240","block":13621876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13600240","block":13621877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13600240","block":13621879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13600240","block":13621880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13629288","block":13631875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13629288","block":13631876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13629288","block":13631877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13629288","block":13631879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13629288","block":13631880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13629288","block":13641875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13629288","block":13641876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13629288","block":13641877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13629288","block":13641879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13629288","block":13641880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13629288","block":13651875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13629288","block":13651876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13629288","block":13651877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13629288","block":13651879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13629288","block":13651880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13629288","block":13661875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13629288","block":13661876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13629288","block":13661877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13629288","block":13661879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13629288","block":13661880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13629288","block":13671875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13629288","block":13671876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13629288","block":13671877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13629288","block":13671879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13629288","block":13671880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13629288","block":13681875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13629288","block":13681876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13629288","block":13681877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13629288","block":13681879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13629288","block":13681880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13690717","block":13691875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13690717","block":13691876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13690717","block":13691877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13690717","block":13691879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13690717","block":13691880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13690717","block":13701875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13690717","block":13701876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13690717","block":13701877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13690717","block":13701879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13690717","block":13701880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13690717","block":13711875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13690717","block":13711876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13690717","block":13711877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13690717","block":13711879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13690717","block":13711880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13714176","block":13721875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13714176","block":13721876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13714176","block":13721877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13714176","block":13721879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13714176","block":13721880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13725614","block":13731875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13725614","block":13731876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13725614","block":13731877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13725614","block":13731879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13725614","block":13731880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13725614","block":13741875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13725614","block":13741876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13725614","block":13741877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13725614","block":13741879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13725614","block":13741880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13747870","block":13751875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13747870","block":13751876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13747870","block":13751877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13747870","block":13751879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"14834373073199575090996","lastRewardBlock":"13747870","block":13751880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13752825","block":13761875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13752825","block":13761876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13752825","block":13761877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13752825","block":13761879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"14834373073199575090996","lastRewardBlock":"13752825","block":13761880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13752825","block":13771875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13752825","block":13771876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13752825","block":13771877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13752825","block":13771879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"14834373073199575090996","lastRewardBlock":"13752825","block":13771880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13773046","block":13781875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13773046","block":13781876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13773046","block":13781877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13773046","block":13781879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"14834373073199575090996","lastRewardBlock":"13773046","block":13781880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13773046","block":13791875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13773046","block":13791876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13773046","block":13791877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13773046","block":13791879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"14834373073199575090996","lastRewardBlock":"13773046","block":13791880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13773046","block":13801875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13773046","block":13801876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13773046","block":13801877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13773046","block":13801879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"14834373073199575090996","lastRewardBlock":"13773046","block":13801880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13804645","block":13811875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13804645","block":13811876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13804645","block":13811877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13804645","block":13811879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"14834373073199575090996","lastRewardBlock":"13804645","block":13811880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13811980","block":13821875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13811980","block":13821876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13811980","block":13821877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13811980","block":13821879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"15993994943138362747623","lastRewardBlock":"13811980","block":13821880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13811980","block":13831875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13811980","block":13831876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13811980","block":13831877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13811980","block":13831879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"15993994943138362747623","lastRewardBlock":"13811980","block":13831880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13811980","block":13841875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13811980","block":13841876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13811980","block":13841877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13811980","block":13841879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"15993994943138362747623","lastRewardBlock":"13811980","block":13841880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13811980","block":13851875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13811980","block":13851876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13811980","block":13851877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13811980","block":13851879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"15993994943138362747623","lastRewardBlock":"13811980","block":13851880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13860355","block":13861875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13860355","block":13861876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13860355","block":13861877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13860355","block":13861879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"15993994943138362747623","lastRewardBlock":"13860355","block":13861880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13860355","block":13871875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13860355","block":13871876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13860355","block":13871877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13860355","block":13871879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"15993994943138362747623","lastRewardBlock":"13860355","block":13871880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13878632","block":13881875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13878632","block":13881876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13878632","block":13881877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13878632","block":13881879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"15993994943138362747623","lastRewardBlock":"13878632","block":13881880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13878632","block":13891875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13878632","block":13891876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13878632","block":13891877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13878632","block":13891879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"15993994943138362747623","lastRewardBlock":"13878632","block":13891880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13892849","block":13901875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13892849","block":13901876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13892849","block":13901877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13892849","block":13901879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"15993994943138362747623","lastRewardBlock":"13892849","block":13901880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13892849","block":13911875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13892849","block":13911876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13892849","block":13911877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13892849","block":13911879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"15993994943138362747623","lastRewardBlock":"13892849","block":13911880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13914150","block":13921875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13914150","block":13921876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13914150","block":13921877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13914150","block":13921879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"13914150","block":13921880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13914150","block":13931875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13914150","block":13931876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13914150","block":13931877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13914150","block":13931879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"13914150","block":13931880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13914150","block":13941875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13914150","block":13941876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13914150","block":13941877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13914150","block":13941879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"13914150","block":13941880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13914150","block":13951875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13914150","block":13951876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13914150","block":13951877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13914150","block":13951879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"13914150","block":13951880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13961197","block":13961875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13961197","block":13961876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13961197","block":13961877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13961197","block":13961879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"13961197","block":13961880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13961197","block":13971875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13961197","block":13971876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13961197","block":13971877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13961197","block":13971879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"13961197","block":13971880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13961197","block":13981875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13961197","block":13981876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13961197","block":13981877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13961197","block":13981879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"13961197","block":13981880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13982741","block":13991875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13982741","block":13991876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13982741","block":13991877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13982741","block":13991879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"13982741","block":13991880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13982741","block":14001875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13982741","block":14001876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13982741","block":14001877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13982741","block":14001879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"13982741","block":14001880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13982741","block":14011875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13982741","block":14011876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13982741","block":14011877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13982741","block":14011879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"13982741","block":14011880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14014176","block":14021875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14014176","block":14021876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14014176","block":14021877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14014176","block":14021879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14014176","block":14021880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14014176","block":14031875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14014176","block":14031876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14014176","block":14031877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14014176","block":14031879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14014176","block":14031880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14014176","block":14041875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14014176","block":14041876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14014176","block":14041877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14014176","block":14041879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14014176","block":14041880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14014176","block":14051875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14014176","block":14051876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14014176","block":14051877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14014176","block":14051879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14014176","block":14051880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14014176","block":14061875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14014176","block":14061876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14014176","block":14061877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14014176","block":14061879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14014176","block":14061880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14014176","block":14071875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14014176","block":14071876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14014176","block":14071877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14014176","block":14071879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14014176","block":14071880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14014176","block":14081875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14014176","block":14081876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14014176","block":14081877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14014176","block":14081879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14014176","block":14081880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14014176","block":14091875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14014176","block":14091876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14014176","block":14091877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14014176","block":14091879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14014176","block":14091880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14014176","block":14101875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14014176","block":14101876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14014176","block":14101877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14014176","block":14101879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14014176","block":14101880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14105918","block":14111875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14105918","block":14111876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14105918","block":14111877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14105918","block":14111879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14105918","block":14111880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14105918","block":14121875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14105918","block":14121876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14105918","block":14121877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14105918","block":14121879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14105918","block":14121880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14105918","block":14131875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14105918","block":14131876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14105918","block":14131877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14105918","block":14131879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14105918","block":14131880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14105918","block":14141875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14105918","block":14141876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14105918","block":14141877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14105918","block":14141879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14105918","block":14141880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14105918","block":14151875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14105918","block":14151876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14105918","block":14151877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14105918","block":14151879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14105918","block":14151880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14105918","block":14161875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14105918","block":14161876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14105918","block":14161877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14105918","block":14161879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14105918","block":14161880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14105918","block":14171875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14105918","block":14171876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14105918","block":14171877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14105918","block":14171879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14105918","block":14171880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14180189","block":14181875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14180189","block":14181876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14180189","block":14181877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14180189","block":14181879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14180189","block":14181880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14180189","block":14191875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14180189","block":14191876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14180189","block":14191877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14180189","block":14191879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14180189","block":14191880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14200345","block":14201875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14200345","block":14201876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14200345","block":14201877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14200345","block":14201879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14200345","block":14201880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14200345","block":14211875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14200345","block":14211876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14200345","block":14211877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14200345","block":14211879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14200345","block":14211880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14215881","block":14221875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14215881","block":14221876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14215881","block":14221877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14215881","block":14221879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14215881","block":14221880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14228313","block":14231875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"207931667955371038408796","lastRewardBlock":"14228313","block":14231876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14228313","block":14231877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14228313","block":14231879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14228313","block":14231880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14228313","block":14241875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"207931667955371038408796","lastRewardBlock":"14228313","block":14241876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14228313","block":14241877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14228313","block":14241879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14228313","block":14241880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14228313","block":14251875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"207931667955371038408796","lastRewardBlock":"14228313","block":14251876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14228313","block":14251877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14228313","block":14251879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14228313","block":14251880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14228313","block":14261875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"207931667955371038408796","lastRewardBlock":"14228313","block":14261876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14228313","block":14261877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14228313","block":14261879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14228313","block":14261880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14228313","block":14271875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"207931667955371038408796","lastRewardBlock":"14228313","block":14271876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14228313","block":14271877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14228313","block":14271879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14228313","block":14271880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14277842","block":14281875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"207931667955371038408796","lastRewardBlock":"14277842","block":14281876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14277842","block":14281877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14277842","block":14281879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14277842","block":14281880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14277842","block":14291875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"207931667955371038408796","lastRewardBlock":"14277842","block":14291876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14277842","block":14291877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14277842","block":14291879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14277842","block":14291880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14277842","block":14301875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"207931667955371038408796","lastRewardBlock":"14277842","block":14301876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14277842","block":14301877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14277842","block":14301879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14277842","block":14301880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14277842","block":14311875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"207931667955371038408796","lastRewardBlock":"14277842","block":14311876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14277842","block":14311877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14277842","block":14311879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14277842","block":14311880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14277842","block":14321875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"207931667955371038408796","lastRewardBlock":"14277842","block":14321876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14277842","block":14321877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14277842","block":14321879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14277842","block":14321880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14277842","block":14331875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"207931667955371038408796","lastRewardBlock":"14277842","block":14331876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14277842","block":14331877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14277842","block":14331879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14277842","block":14331880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14334784","block":14341875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14334784","block":14341876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14334784","block":14341877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14334784","block":14341879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14334784","block":14341880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14334784","block":14351875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14334784","block":14351876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14334784","block":14351877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14334784","block":14351879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14334784","block":14351880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14334784","block":14361875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14334784","block":14361876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14334784","block":14361877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14334784","block":14361879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14334784","block":14361880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14334784","block":14371875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14334784","block":14371876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14334784","block":14371877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14334784","block":14371879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14334784","block":14371880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14334784","block":14381875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14334784","block":14381876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14334784","block":14381877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14334784","block":14381879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14334784","block":14381880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14334784","block":14391875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14334784","block":14391876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14334784","block":14391877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14334784","block":14391879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14334784","block":14391880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14334784","block":14401875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14334784","block":14401876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14334784","block":14401877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14334784","block":14401879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14334784","block":14401880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14406441","block":14411875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14406441","block":14411876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14406441","block":14411877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14406441","block":14411879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14406441","block":14411880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14406441","block":14421875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14406441","block":14421876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14406441","block":14421877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14406441","block":14421879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14406441","block":14421880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14406441","block":14431875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14406441","block":14431876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14406441","block":14431877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14406441","block":14431879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14406441","block":14431880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14406441","block":14441875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14406441","block":14441876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14406441","block":14441877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14406441","block":14441879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14406441","block":14441880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14406441","block":14451875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14406441","block":14451876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14406441","block":14451877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14406441","block":14451879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14406441","block":14451880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14453602","block":14461875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14453602","block":14461876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14453602","block":14461877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14453602","block":14461879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14453602","block":14461880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14453602","block":14471875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14453602","block":14471876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14453602","block":14471877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14453602","block":14471879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14453602","block":14471880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14453602","block":14481875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14453602","block":14481876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14453602","block":14481877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14453602","block":14481879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14453602","block":14481880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14453602","block":14491875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14453602","block":14491876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14453602","block":14491877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14453602","block":14491879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14453602","block":14491880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14501815","block":14501875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14501815","block":14501876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14501815","block":14501877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14501815","block":14501879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14501815","block":14501880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14501815","block":14511875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14501815","block":14511876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14501815","block":14511877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14501815","block":14511879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14501815","block":14511880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14501815","block":14521875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14501815","block":14521876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14501815","block":14521877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14501815","block":14521879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14501815","block":14521880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14528446","block":14531875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14528446","block":14531876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14528446","block":14531877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14528446","block":14531879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14528446","block":14531880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14528446","block":14541875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14528446","block":14541876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14528446","block":14541877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14528446","block":14541879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14528446","block":14541880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14546954","block":14551875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14546954","block":14551876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14546954","block":14551877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14546954","block":14551879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14546954","block":14551880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14546954","block":14561875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14546954","block":14561876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14546954","block":14561877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14546954","block":14561879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14546954","block":14561880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14546954","block":14571875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14546954","block":14571876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14546954","block":14571877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14546954","block":14571879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14546954","block":14571880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14546954","block":14581875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14546954","block":14581876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14546954","block":14581877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14546954","block":14581879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14546954","block":14581880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14546954","block":14591875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14546954","block":14591876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14546954","block":14591877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14546954","block":14591879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14546954","block":14591880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14546954","block":14601875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14546954","block":14601876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14546954","block":14601877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14546954","block":14601879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14546954","block":14601880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14610787","block":14611875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14610787","block":14611876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14610787","block":14611877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14610787","block":14611879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14610787","block":14611880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14610787","block":14621875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14610787","block":14621876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14610787","block":14621877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14610787","block":14621879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14610787","block":14621880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14610787","block":14631875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14610787","block":14631876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14610787","block":14631877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14610787","block":14631879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14610787","block":14631880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14641875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14641876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14641877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14641879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14641880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14651875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14651876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14651877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14651879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14651880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14661875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14661876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14661877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14661879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14661880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14671875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14671876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14671877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14671879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14671880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14681875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14681876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14681877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14681879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14681880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14691875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14691876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14691877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14691879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14691880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14701875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14701876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14701877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14701879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14701880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14711875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14711876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14711877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14711879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14711880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14721875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14721876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14721877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14721879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14721880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14731875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14731876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14731877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14731879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14731880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14741875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14741876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14741877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14741879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14741880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14751875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14751876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14751877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14751879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14751880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14761875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14761876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14761877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14761879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14761880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14771875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14771876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14771877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14771879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14771880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14776437","block":14781875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14776437","block":14781876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14776437","block":14781877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14776437","block":14781879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14776437","block":14781880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14783801","block":14791875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14783801","block":14791876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"177943991426784835462249","lastRewardBlock":"14783801","block":14791877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14783801","block":14791879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14783801","block":14791880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14783801","block":14801875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14783801","block":14801876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"177943991426784835462249","lastRewardBlock":"14783801","block":14801877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14783801","block":14801879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14783801","block":14801880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14783801","block":14811875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14783801","block":14811876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"177943991426784835462249","lastRewardBlock":"14783801","block":14811877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14783801","block":14811879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14783801","block":14811880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14783801","block":14821875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14783801","block":14821876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"177943991426784835462249","lastRewardBlock":"14783801","block":14821877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14783801","block":14821879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14783801","block":14821880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14783801","block":14831875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14783801","block":14831876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"177943991426784835462249","lastRewardBlock":"14783801","block":14831877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14783801","block":14831879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14783801","block":14831880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14841811","block":14841875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14841811","block":14841876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"177943991426784835462249","lastRewardBlock":"14841811","block":14841877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14841811","block":14841879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14841811","block":14841880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14841811","block":14851875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14841811","block":14851876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"177943991426784835462249","lastRewardBlock":"14841811","block":14851877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14841811","block":14851879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14841811","block":14851880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14841811","block":14861875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14841811","block":14861876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"177943991426784835462249","lastRewardBlock":"14841811","block":14861877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14841811","block":14861879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14841811","block":14861880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14871875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14871876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14871877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14871879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14871880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14881875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14881876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14881877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14881879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14881880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14891875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14891876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14891877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14891879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14891880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14901875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14901876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14901877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14901879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14901880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14911875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14911876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14911877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14911879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14911880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14921875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14921876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14921877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14921879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14921880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14931875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14931876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14931877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14931879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14931880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14941875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14941876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14941877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14941879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14941880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14951875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14951876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14951877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14951879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14951880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14961875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14961876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14961877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14961879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14961880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14971875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14971876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14971877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14971879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14971880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14981875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14981876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14981877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14981879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14981880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14991875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14991876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14991877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14991879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14991880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":15001875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":15001876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":15001877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":15001879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":15001880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15011875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15011876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15011877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15011879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15011880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15021875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15021876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15021877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15021879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15021880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15031875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15031876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15031877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15031879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15031880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15041875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15041876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15041877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15041879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15041880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15051875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15051876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15051877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15051879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15051880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15061875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15061876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15061877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15061879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15061880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15071875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15071876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15071877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15071879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15071880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15081875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15081876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15081877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15081879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15081880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15091875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15091876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15091877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15091879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15091880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15101875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15101876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15101877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15101879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15101880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15111875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15111876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15111877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15111879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15111880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15121875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15121876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15121877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15121879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15121880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15131875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15131876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15131877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15131879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15131880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15137997","block":15141875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"339081062568025157719774","lastRewardBlock":"15137997","block":15141876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15137997","block":15141877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15137997","block":15141879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15137997","block":15141880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"339081062568025157719774","lastRewardBlock":"15137997","block":15151876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15137997","block":15151877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15137997","block":15151879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15137997","block":15151880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15156956","block":15161875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"339081062568025157719774","lastRewardBlock":"15156956","block":15161876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15156956","block":15161877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15156956","block":15161879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15156956","block":15161880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15162376","block":15171875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"339081062568025157719774","lastRewardBlock":"15162376","block":15171876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15162376","block":15171877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15162376","block":15171879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15162376","block":15171880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15162376","block":15181875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"339081062568025157719774","lastRewardBlock":"15162376","block":15181876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15162376","block":15181877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15162376","block":15181879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15162376","block":15181880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15162376","block":15191875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"339081062568025157719774","lastRewardBlock":"15162376","block":15191876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15162376","block":15191877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15162376","block":15191879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15162376","block":15191880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15162376","block":15201875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"339081062568025157719774","lastRewardBlock":"15162376","block":15201876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15162376","block":15201877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15162376","block":15201879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15162376","block":15201880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15162376","block":15211875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"339081062568025157719774","lastRewardBlock":"15162376","block":15211876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15162376","block":15211877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15162376","block":15211879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15162376","block":15211880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15213831","block":15221875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"339081062568025157719774","lastRewardBlock":"15213831","block":15221876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15213831","block":15221877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15213831","block":15221879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15213831","block":15221880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15222818","block":15231875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15222818","block":15231876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15222818","block":15231877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15222818","block":15231879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15222818","block":15231880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15222818","block":15241875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15222818","block":15241876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15222818","block":15241877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15222818","block":15241879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15222818","block":15241880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15222818","block":15251875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15222818","block":15251876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15222818","block":15251877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15222818","block":15251879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15222818","block":15251880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15222818","block":15261875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15222818","block":15261876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15222818","block":15261877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15222818","block":15261879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15222818","block":15261880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15222818","block":15271875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15222818","block":15271876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15222818","block":15271877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15222818","block":15271879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15222818","block":15271880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15222818","block":15281875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15222818","block":15281876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15222818","block":15281877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15222818","block":15281879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15222818","block":15281880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15287601","block":15291875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15287601","block":15291876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15287601","block":15291877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15287601","block":15291879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15287601","block":15291880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15287601","block":15301875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15287601","block":15301876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15287601","block":15301877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15287601","block":15301879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15287601","block":15301880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15287601","block":15311875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15287601","block":15311876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15287601","block":15311877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15287601","block":15311879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15287601","block":15311880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15287601","block":15321875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15287601","block":15321876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15287601","block":15321877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15287601","block":15321879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15287601","block":15321880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15287601","block":15331875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15287601","block":15331876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15287601","block":15331877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15287601","block":15331879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15287601","block":15331880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15287601","block":15341875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15287601","block":15341876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15287601","block":15341877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15287601","block":15341879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15287601","block":15341880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15287601","block":15351875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15287601","block":15351876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15287601","block":15351877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15287601","block":15351879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15287601","block":15351880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15287601","block":15361875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15287601","block":15361876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15287601","block":15361877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15287601","block":15361879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15287601","block":15361880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15287601","block":15371875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15287601","block":15371876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15287601","block":15371877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15287601","block":15371879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15287601","block":15371880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15287601","block":15381875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15287601","block":15381876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15287601","block":15381877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15287601","block":15381879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15287601","block":15381880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15287601","block":15391875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15287601","block":15391876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15287601","block":15391877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15287601","block":15391879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15287601","block":15391880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15401875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15401876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15401877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15401879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15401880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15411875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15411876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15411877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15411879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15411880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15421875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15421876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15421877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15421879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15421880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15431875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15431876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15431877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15431879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15431880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15441875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15441876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15441877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15441879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15441880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15451875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15451876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15451877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15451879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15451880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15461875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15461876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15461877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15461879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15461880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15471875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15471876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15471877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15471879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15471880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15481875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15481876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15481877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15481879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15481880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15491875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15491876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15491877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15491879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15491880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15501875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15501876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15501877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15501879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15501880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15511875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15511876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15511877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15511879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15511880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15521875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15521876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15521877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15521879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15521880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15531875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15531876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15531877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15531879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15531880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15541875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15541876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15541877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15541879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15541880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15549982","block":15551875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15549982","block":15551876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15549982","block":15551877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15549982","block":15551879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15549982","block":15551880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15549982","block":15561875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15549982","block":15561876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15549982","block":15561877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15549982","block":15561879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15549982","block":15561880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15549982","block":15571875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15549982","block":15571876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15549982","block":15571877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15549982","block":15571879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15549982","block":15571880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15549982","block":15581875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15549982","block":15581876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15549982","block":15581877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15549982","block":15581879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15549982","block":15581880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15549982","block":15591875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15549982","block":15591876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15549982","block":15591877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15549982","block":15591879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15549982","block":15591880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15593959","block":15601875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15593959","block":15601876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15593959","block":15601877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15593959","block":15601879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15593959","block":15601880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15593959","block":15611875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15593959","block":15611876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15593959","block":15611877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15593959","block":15611879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15593959","block":15611880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15593959","block":15621875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15593959","block":15621876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15593959","block":15621877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15593959","block":15621879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15593959","block":15621880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15593959","block":15631875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15593959","block":15631876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15593959","block":15631877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15593959","block":15631879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15593959","block":15631880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15593959","block":15641875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15593959","block":15641876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15593959","block":15641877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15593959","block":15641879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15593959","block":15641880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15650533","block":15651875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15650533","block":15651876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15650533","block":15651877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15650533","block":15651879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15650533","block":15651880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15650533","block":15661875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15650533","block":15661876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15650533","block":15661877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15650533","block":15661879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15650533","block":15661880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15670844","block":15671875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15670844","block":15671876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15670844","block":15671877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15670844","block":15671879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15670844","block":15671880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15681027","block":15681875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15681027","block":15681876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15681027","block":15681877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15681027","block":15681879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15681027","block":15681880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15681027","block":15691875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15681027","block":15691876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15681027","block":15691877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15681027","block":15691879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15681027","block":15691880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15681027","block":15701875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15681027","block":15701876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15681027","block":15701877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15681027","block":15701879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15681027","block":15701880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15703928","block":15711875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15703928","block":15711876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15703928","block":15711877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15703928","block":15711879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15703928","block":15711880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15703928","block":15721875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15703928","block":15721876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15703928","block":15721877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15703928","block":15721879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15703928","block":15721880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15703928","block":15731875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15703928","block":15731876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15703928","block":15731877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15703928","block":15731879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15703928","block":15731880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15703928","block":15741875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15703928","block":15741876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15703928","block":15741877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15703928","block":15741879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15703928","block":15741880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15703928","block":15751875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15703928","block":15751876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15703928","block":15751877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15703928","block":15751879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15703928","block":15751880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15703928","block":15761875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15703928","block":15761876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15703928","block":15761877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15703928","block":15761879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15703928","block":15761880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15703928","block":15771875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15703928","block":15771876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15703928","block":15771877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15703928","block":15771879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15703928","block":15771880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15781875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15781876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15781877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15781879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15781880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15791875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15791876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15791877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15791879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15791880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15801875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15801876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15801877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15801879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15801880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15811875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15811876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15811877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15811879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15811880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15821875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15821876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15821877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15821879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15821880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15831875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15831876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15831877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15831879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15831880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15841875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15841876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15841877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15841879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15841880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15851875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15851876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15851877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15851879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15851880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15861875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15861876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15861877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15861879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15861880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15871875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15871876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15871877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15871879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15871880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15881875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15881876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15881877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15881879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15881880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15891875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15891876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15891877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15891879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15891880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15901875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15901876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15901877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15901879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15901880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15911875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15911876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15911877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15911879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15911880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15921875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15921876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15921877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15921879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15921880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15931875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15931876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15931877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15931879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15931880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15941875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15941876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15941877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15941879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15941880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15951875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15951876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15951877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15951879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15951880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15961875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15961876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15961877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15961879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15961880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15966432","block":15971875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15966432","block":15971876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15966432","block":15971877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15966432","block":15971879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15966432","block":15971880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15972794","block":15981875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15972794","block":15981876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"15972794","block":15981877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15972794","block":15981879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15972794","block":15981880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15972794","block":15991875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15972794","block":15991876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"15972794","block":15991877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15972794","block":15991879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15972794","block":15991880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15972794","block":16001875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15972794","block":16001876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"15972794","block":16001877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15972794","block":16001879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15972794","block":16001880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15972794","block":16011875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15972794","block":16011876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"15972794","block":16011877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15972794","block":16011879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15972794","block":16011880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15972794","block":16021875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15972794","block":16021876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"15972794","block":16021877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15972794","block":16021879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15972794","block":16021880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15972794","block":16031875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15972794","block":16031876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"15972794","block":16031877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15972794","block":16031879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15972794","block":16031880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15972794","block":16041875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15972794","block":16041876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"15972794","block":16041877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15972794","block":16041879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15972794","block":16041880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15972794","block":16051875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15972794","block":16051876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"15972794","block":16051877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15972794","block":16051879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15972794","block":16051880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16053155","block":16061875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"443494923990629932772240","lastRewardBlock":"16053155","block":16061876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16053155","block":16061877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16053155","block":16061879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16053155","block":16061880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16053155","block":16071875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"443494923990629932772240","lastRewardBlock":"16053155","block":16071876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16053155","block":16071877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16053155","block":16071879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16053155","block":16071880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16053155","block":16081875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"443494923990629932772240","lastRewardBlock":"16053155","block":16081876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16053155","block":16081877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16053155","block":16081879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16053155","block":16081880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16053155","block":16091875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"443494923990629932772240","lastRewardBlock":"16053155","block":16091876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16053155","block":16091877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16053155","block":16091879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16053155","block":16091880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16053155","block":16101875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"443494923990629932772240","lastRewardBlock":"16053155","block":16101876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16053155","block":16101877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16053155","block":16101879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16053155","block":16101880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16053155","block":16111875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"443494923990629932772240","lastRewardBlock":"16053155","block":16111876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16053155","block":16111877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16053155","block":16111879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16053155","block":16111880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16115913","block":16121875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"443494923990629932772240","lastRewardBlock":"16115913","block":16121876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16115913","block":16121877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16115913","block":16121879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16115913","block":16121880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16129261","block":16131875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16129261","block":16131876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16129261","block":16131877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16129261","block":16131879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16129261","block":16131880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16129261","block":16141875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16129261","block":16141876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16129261","block":16141877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16129261","block":16141879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16129261","block":16141880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16149790","block":16151875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16149790","block":16151876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16149790","block":16151877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16149790","block":16151879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16149790","block":16151880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16149790","block":16161875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16149790","block":16161876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16149790","block":16161877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16149790","block":16161879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16149790","block":16161880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16149790","block":16171875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16149790","block":16171876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16149790","block":16171877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16149790","block":16171879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16149790","block":16171880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16149790","block":16181875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16149790","block":16181876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16149790","block":16181877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16149790","block":16181879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16149790","block":16181880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16191699","block":16191875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16191699","block":16191876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16191699","block":16191877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16191699","block":16191879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16191699","block":16191880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16191699","block":16201875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16191699","block":16201876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16191699","block":16201877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16191699","block":16201879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16191699","block":16201880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16191699","block":16211875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16191699","block":16211876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16191699","block":16211877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16191699","block":16211879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16191699","block":16211880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16191699","block":16221875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16191699","block":16221876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16191699","block":16221877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16191699","block":16221879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16191699","block":16221880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16191699","block":16231875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16191699","block":16231876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16191699","block":16231877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16191699","block":16231879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16191699","block":16231880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16236908","block":16241875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16236908","block":16241876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16236908","block":16241877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16236908","block":16241879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16236908","block":16241880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16236908","block":16251875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16236908","block":16251876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16236908","block":16251877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16236908","block":16251879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16236908","block":16251880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16236908","block":16261875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16236908","block":16261876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16236908","block":16261877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16236908","block":16261879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16236908","block":16261880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16236908","block":16271875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16236908","block":16271876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16236908","block":16271877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16236908","block":16271879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16236908","block":16271880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16236908","block":16281875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16236908","block":16281876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16236908","block":16281877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16236908","block":16281879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16236908","block":16281880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16236908","block":16291875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16236908","block":16291876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16236908","block":16291877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16236908","block":16291879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16236908","block":16291880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16236908","block":16301875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16236908","block":16301876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16236908","block":16301877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16236908","block":16301879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16236908","block":16301880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16236908","block":16311875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16236908","block":16311876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16236908","block":16311877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16236908","block":16311879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16236908","block":16311880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16315948","block":16321875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16315948","block":16321876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16315948","block":16321877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16315948","block":16321879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16315948","block":16321880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16315948","block":16331875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16315948","block":16331876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16315948","block":16331877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16315948","block":16331879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16315948","block":16331880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16315948","block":16341875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16315948","block":16341876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16315948","block":16341877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16315948","block":16341879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16315948","block":16341880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16351875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16351876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16351877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16351879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16351880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16361875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16361876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16361877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16361879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16361880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16371875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16371876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16371877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16371879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16371880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16381875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16381876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16381877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16381879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16381880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16391875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16391876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16391877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16391879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16391880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16401875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16401876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16401877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16401879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16401880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16411875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16411876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16411877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16411879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16411880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16421875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16421876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16421877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16421879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16421880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16431875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16431876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16431877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16431879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16431880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16441875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16441876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16441877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16441879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16441880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16451875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16451876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16451877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16451879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16451880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16461875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16461876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16461877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16461879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16461880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16471875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16471876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16471877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16471879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16471880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16481875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16481876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16481877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16481879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16481880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16491875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16491876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16491877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16491879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16491880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16501875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16501876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16501877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16501879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16501880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16511875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16511876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16511877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16511879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16511880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16521875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16521876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16521877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16521879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16521880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16531875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16531876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16531877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16531879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16531880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16541875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16541876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16541877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16541879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16541880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16550363","block":16551875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16550363","block":16551876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16550363","block":16551877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16550363","block":16551879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16550363","block":16551880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16550363","block":16561875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16550363","block":16561876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16550363","block":16561877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16550363","block":16561879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16550363","block":16561880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16550363","block":16571875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16550363","block":16571876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16550363","block":16571877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16550363","block":16571879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16550363","block":16571880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16574210","block":16581875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16574210","block":16581876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16574210","block":16581877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16574210","block":16581879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16574210","block":16581880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16574210","block":16591875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16574210","block":16591876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16574210","block":16591877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16574210","block":16591879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16574210","block":16591880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16574210","block":16601875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16574210","block":16601876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16574210","block":16601877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16574210","block":16601879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16574210","block":16601880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16574210","block":16611875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16574210","block":16611876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16574210","block":16611877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16574210","block":16611879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16574210","block":16611880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16574210","block":16621875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16574210","block":16621876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16574210","block":16621877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16574210","block":16621879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16574210","block":16621880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16574210","block":16631875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16574210","block":16631876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16574210","block":16631877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16574210","block":16631879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16574210","block":16631880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16574210","block":16641875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16574210","block":16641876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16574210","block":16641877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16574210","block":16641879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16574210","block":16641880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16574210","block":16651875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16574210","block":16651876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16574210","block":16651877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16574210","block":16651879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16574210","block":16651880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16574210","block":16661875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16574210","block":16661876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16574210","block":16661877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16574210","block":16661879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16574210","block":16661880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16664112","block":16671875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16664112","block":16671876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16664112","block":16671877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16664112","block":16671879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16664112","block":16671880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16664112","block":16681875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16664112","block":16681876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16664112","block":16681877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16664112","block":16681879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16664112","block":16681880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16664112","block":16691875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16664112","block":16691876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16664112","block":16691877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16664112","block":16691879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16664112","block":16691880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16701875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16701876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16701877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16701879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16701880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16711875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16711876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16711877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16711879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16711880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16721875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16721876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16721877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16721879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16721880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16731875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16731876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16731877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16731879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16731880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16741875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16741876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16741877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16741879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16741880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16751875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16751876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16751877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16751879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16751880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16761875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16761876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16761877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16761879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16761880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16771875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16771876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16771877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16771879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16771880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16781875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16781876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16781877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16781879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16781880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16791875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16791876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16791877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16791879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16791880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16801875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16801876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16801877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16801879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16801880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16811875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16811876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16811877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16811879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16811880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16821875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16821876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16821877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16821879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16821880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16831875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16831876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16831877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16831879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16831880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16841875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16841876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16841877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16841879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16841880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16851875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16851876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16851877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16851879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16851880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16861875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16861876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16861877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16861879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16861880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16871875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16871876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16871877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16871879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16871880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16881875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16881876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16881877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16881879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16881880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16891875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16891876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16891877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16891879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16891880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16901875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16901876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16901877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16901879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16901880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16911875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16911876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16911877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16911879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16911880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16921875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16921876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16921877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16921879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16921880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16931875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16931876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16931877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16931879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16931880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16941875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16941876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16941877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16941879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16941880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16951875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16951876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16951877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16951879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16951880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16961875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16961876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16961877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16961879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16961880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16971875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16971876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16971877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16971879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16971880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16972080","block":16981875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"16972080","block":16981876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16972080","block":16981877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16972080","block":16981879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16972080","block":16981880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16972080","block":16991875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"16972080","block":16991876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16972080","block":16991877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16972080","block":16991879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16972080","block":16991880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16972080","block":17001875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"16972080","block":17001876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16972080","block":17001877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16972080","block":17001879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16972080","block":17001880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16972080","block":17011875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"16972080","block":17011876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16972080","block":17011877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16972080","block":17011879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16972080","block":17011880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16972080","block":17021875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"16972080","block":17021876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16972080","block":17021877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16972080","block":17021879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16972080","block":17021880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16972080","block":17031875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"16972080","block":17031876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16972080","block":17031877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16972080","block":17031879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16972080","block":17031880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17041875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17041876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17041877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17041879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17041880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17051875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17051876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17051877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17051879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17051880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17061875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17061876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17061877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17061879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17061880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17071875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17071876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17071877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17071879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17071880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17081875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17081876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17081877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17081879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17081880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17091875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17091876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17091877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17091879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17091880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17101875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17101876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17101877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17101879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17101880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17111875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17111876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17111877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17111879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17111880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17121875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17121876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17121877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17121879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17121880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17131875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17131876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17131877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17131879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17131880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17141875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17141876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17141877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17141879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17141880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17151875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17151876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17151877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17151879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17151880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17161875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17161876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17161877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17161879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17161880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17171875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17171876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17171877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17171879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17171880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17181875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17181876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17181877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17181879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17181880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17191875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17191876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17191877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17191879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17191880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17201875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17201876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17201877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17201879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17201880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17211875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17211876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17211877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17211879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17211880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17221875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17221876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17221877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17221879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17221880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17231875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17231876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17231877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17231879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17231880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17241875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17241876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17241877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17241879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17241880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17251875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17251876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17251877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17251879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17251880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17261875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17261876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17261877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17261879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17261880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17271875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17271876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17271877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17271879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17271880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17281875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17281876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17281877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17281879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17281880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17281893","block":17291875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17281893","block":17291876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17281893","block":17291877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17281893","block":17291879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17281893","block":17291880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17281893","block":17301875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17281893","block":17301876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17281893","block":17301877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17281893","block":17301879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17281893","block":17301880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17281893","block":17311875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17281893","block":17311876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17281893","block":17311877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17281893","block":17311879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17281893","block":17311880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17281893","block":17321875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17281893","block":17321876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17281893","block":17321877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17281893","block":17321879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17281893","block":17321880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17281893","block":17331875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17281893","block":17331876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17281893","block":17331877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17281893","block":17331879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17281893","block":17331880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17281893","block":17341875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17281893","block":17341876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17281893","block":17341877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17281893","block":17341879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17281893","block":17341880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17281893","block":17351875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17281893","block":17351876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17281893","block":17351877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17281893","block":17351879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17281893","block":17351880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17281893","block":17361875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17281893","block":17361876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17281893","block":17361877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17281893","block":17361879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17281893","block":17361880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17281893","block":17371875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17281893","block":17371876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17281893","block":17371877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17281893","block":17371879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17281893","block":17371880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17281893","block":17381875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17281893","block":17381876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17281893","block":17381877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17281893","block":17381879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17281893","block":17381880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17391875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17391876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17391877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17391879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17391880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17401875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17401876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17401877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17401879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17401880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17411875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17411876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17411877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17411879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17411880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17421875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17421876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17421877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17421879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17421880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17431875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17431876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17431877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17431879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17431880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17441875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17441876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17441877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17441879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17441880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17451875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17451876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17451877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17451879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17451880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17461875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17461876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17461877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17461879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17461880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17471875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17471876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17471877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17471879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17471880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17481875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17481876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17481877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17481879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17481880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17491875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17491876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17491877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17491879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17491880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17501875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17501876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17501877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17501879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17501880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17511875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17511876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17511877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17511879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17511880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17521875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17521876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17521877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17521879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17521880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17529653","block":17531875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17529653","block":17531876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17529653","block":17531877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17529653","block":17531879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17529653","block":17531880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17529653","block":17541875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17529653","block":17541876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17529653","block":17541877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17529653","block":17541879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17529653","block":17541880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17529653","block":17551875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17529653","block":17551876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17529653","block":17551877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17529653","block":17551879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17529653","block":17551880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17529653","block":17561875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17529653","block":17561876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17529653","block":17561877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17529653","block":17561879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17529653","block":17561880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17529653","block":17571875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17529653","block":17571876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17529653","block":17571877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17529653","block":17571879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17529653","block":17571880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17529653","block":17581875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17529653","block":17581876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17529653","block":17581877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17529653","block":17581879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17529653","block":17581880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17529653","block":17591875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17529653","block":17591876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17529653","block":17591877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17529653","block":17591879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17529653","block":17591880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17529653","block":17601875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17529653","block":17601876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17529653","block":17601877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17529653","block":17601879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17529653","block":17601880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17610905","block":17611875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17610905","block":17611876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17610905","block":17611877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17610905","block":17611879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17610905","block":17611880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17610905","block":17621875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17610905","block":17621876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17610905","block":17621877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17610905","block":17621879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17610905","block":17621880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17610905","block":17631875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17610905","block":17631876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17610905","block":17631877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17610905","block":17631879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17610905","block":17631880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17610905","block":17641875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17610905","block":17641876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17610905","block":17641877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17610905","block":17641879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17610905","block":17641880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17610905","block":17651875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17610905","block":17651876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17610905","block":17651877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17610905","block":17651879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17610905","block":17651880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17610905","block":17661875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17610905","block":17661876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17610905","block":17661877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17610905","block":17661879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17610905","block":17661880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17610905","block":17671875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17610905","block":17671876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17610905","block":17671877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17610905","block":17671879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17610905","block":17671880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17610905","block":17681875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17610905","block":17681876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17610905","block":17681877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17610905","block":17681879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17610905","block":17681880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17610905","block":17691875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17610905","block":17691876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17610905","block":17691877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17610905","block":17691879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17610905","block":17691880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17610905","block":17701875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17610905","block":17701876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17610905","block":17701877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17610905","block":17701879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17610905","block":17701880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17711875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17711876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17711877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17711879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17711880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17721875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17721876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17721877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17721879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17721880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17731875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17731876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17731877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17731879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17731880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17741875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17741876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17741877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17741879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17741880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17751875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17751876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17751877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17751879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17751880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17761875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17761876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17761877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17761879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17761880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17771875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17771876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17771877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17771879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17771880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17781875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17781876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17781877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17781879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17781880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17791875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17791876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17791877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17791879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17791880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17801875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17801876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17801877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17801879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17801880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17811875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17811876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17811877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17811879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17811880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17821875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17821876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17821877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17821879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17821880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17831875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17831876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17831877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17831879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17831880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17841875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17841876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17841877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17841879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17841880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17851875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17851876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17851877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17851879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17851880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17861875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17861876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17861877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17861879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17861880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17871875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17871876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17871877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17871879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17871880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17881875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17881876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17881877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17881879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17881880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17891875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17891876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17891877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17891879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17891880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17901875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17901876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17901877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17901879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17901880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17911875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17911876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17911877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17911879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17911880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17921875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17921876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17921877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17921879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17921880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17931875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17931876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17931877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17931879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17931880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17941875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17941876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17941877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17941879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17941880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17951875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17951876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17951877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17951879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17951880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17961875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17961876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17961877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17961879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17961880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17971875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17971876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17971877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17971879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17971880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17981875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17981876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17981877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17981879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17981880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17991875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17991876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17991877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17991879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17991880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"}] \ No newline at end of file diff --git a/allResults5million.json b/allResults5million.json new file mode 100644 index 0000000..d943447 --- /dev/null +++ b/allResults5million.json @@ -0,0 +1 @@ +[{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13011873","block":13011876,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"913368109395109831686","lastRewardBlock":"13011873","block":13011877,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"611276273141238246941","lastRewardBlock":"13011873","block":13011878,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"0","lastRewardBlock":"13011873","block":13011879,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"0","lastRewardBlock":"13011873","block":13011880,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"0","lastRewardBlock":"13011873","block":13011881,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13011873","block":13011875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"913368109395109831686","lastRewardBlock":"13011873","block":13011876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"611276273141238246941","lastRewardBlock":"13011873","block":13011877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"0","lastRewardBlock":"13011873","block":13011878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"0","lastRewardBlock":"13011873","block":13011879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"0","lastRewardBlock":"13011873","block":13011880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13019897","block":13021875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"913368109395109831686","lastRewardBlock":"13019897","block":13021876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"611276273141238246941","lastRewardBlock":"13019897","block":13021877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"0","lastRewardBlock":"13019897","block":13021878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"537280361095585255111","lastRewardBlock":"13019897","block":13021879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"0","lastRewardBlock":"13019897","block":13021880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13027009","block":13031875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"913368109395109831686","lastRewardBlock":"13027009","block":13031876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"611276273141238246941","lastRewardBlock":"13027009","block":13031877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"0","lastRewardBlock":"13027009","block":13031878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"537280361095585255111","lastRewardBlock":"13027009","block":13031879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"0","lastRewardBlock":"13027009","block":13031880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13038997","block":13041875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"913368109395109831686","lastRewardBlock":"13038997","block":13041876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"611276273141238246941","lastRewardBlock":"13038997","block":13041877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"0","lastRewardBlock":"13038997","block":13041878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"537280361095585255111","lastRewardBlock":"13038997","block":13041879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"0","lastRewardBlock":"13038997","block":13041880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13038997","block":13051875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"913368109395109831686","lastRewardBlock":"13038997","block":13051876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"611276273141238246941","lastRewardBlock":"13038997","block":13051877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"0","lastRewardBlock":"13038997","block":13051878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"537280361095585255111","lastRewardBlock":"13038997","block":13051879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"0","lastRewardBlock":"13038997","block":13051880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13055932","block":13061875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"913368109395109831686","lastRewardBlock":"13055932","block":13061876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"611276273141238246941","lastRewardBlock":"13055932","block":13061877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13055932","block":13061878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"2192018818969529434116","lastRewardBlock":"13055932","block":13061879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"0","lastRewardBlock":"13055932","block":13061880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13064458","block":13071875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"913368109395109831686","lastRewardBlock":"13064458","block":13071876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"611276273141238246941","lastRewardBlock":"13064458","block":13071877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13064458","block":13071878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"2192018818969529434116","lastRewardBlock":"13064458","block":13071879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"0","lastRewardBlock":"13064458","block":13071880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13080604","block":13081875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13080604","block":13081876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"611276273141238246941","lastRewardBlock":"13080604","block":13081877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13080604","block":13081878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"2192018818969529434116","lastRewardBlock":"13080604","block":13081879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13080604","block":13081880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13086698","block":13091875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13086698","block":13091876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13086698","block":13091877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13086698","block":13091878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"2192018818969529434116","lastRewardBlock":"13086698","block":13091879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13086698","block":13091880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13099595","block":13101875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13099595","block":13101876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13099595","block":13101877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13099595","block":13101878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"2192018818969529434116","lastRewardBlock":"13099595","block":13101879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13099595","block":13101880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13099595","block":13111875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13099595","block":13111876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13099595","block":13111877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13099595","block":13111878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"2192018818969529434116","lastRewardBlock":"13099595","block":13111879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13099595","block":13111880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13117583","block":13121875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13117583","block":13121876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13117583","block":13121877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13117583","block":13121878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"3908960146506483690804","lastRewardBlock":"13117583","block":13121879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13117583","block":13121880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13126252","block":13131875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13126252","block":13131876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13126252","block":13131877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13126252","block":13131878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"3908960146506483690804","lastRewardBlock":"13126252","block":13131879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13126252","block":13131880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13136573","block":13141875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13136573","block":13141876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13136573","block":13141877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13136573","block":13141878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"3908960146506483690804","lastRewardBlock":"13136573","block":13141879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13136573","block":13141880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13136573","block":13151875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13136573","block":13151876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13136573","block":13151877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13136573","block":13151878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"3908960146506483690804","lastRewardBlock":"13136573","block":13151879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13136573","block":13151880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13136573","block":13161875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13136573","block":13161876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13136573","block":13161877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13136573","block":13161878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"3908960146506483690804","lastRewardBlock":"13136573","block":13161879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13136573","block":13161880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13136573","block":13171875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13136573","block":13171876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13136573","block":13171877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13136573","block":13171878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"3908960146506483690804","lastRewardBlock":"13136573","block":13171879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13136573","block":13171880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13136573","block":13181875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13136573","block":13181876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13136573","block":13181877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13136573","block":13181878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"3908960146506483690804","lastRewardBlock":"13136573","block":13181879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13136573","block":13181880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13188621","block":13191875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13188621","block":13191876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13188621","block":13191877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13188621","block":13191878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13188621","block":13191879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13188621","block":13191880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13200233","block":13201875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13200233","block":13201876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13200233","block":13201877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13200233","block":13201878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13200233","block":13201879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"2835009713754346408783","lastRewardBlock":"13200233","block":13201880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13211731","block":13211875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13211731","block":13211876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"15316655704518634941888","lastRewardBlock":"13211731","block":13211877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13211731","block":13211878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13211731","block":13211879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13211731","block":13211880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13218301","block":13221875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"22959601284585190976566","lastRewardBlock":"13218301","block":13221876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"28086199663001044887154","lastRewardBlock":"13218301","block":13221877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13218301","block":13221878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13218301","block":13221879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13218301","block":13221880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13222568","block":13231875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13222568","block":13231876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"28086199663001044887154","lastRewardBlock":"13222568","block":13231877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13222568","block":13231878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13222568","block":13231879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13222568","block":13231880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13222568","block":13241875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13222568","block":13241876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"28086199663001044887154","lastRewardBlock":"13222568","block":13241877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13222568","block":13241878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13222568","block":13241879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13222568","block":13241880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13251599","block":13251875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13251599","block":13251876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"31108666760360216657267","lastRewardBlock":"13251599","block":13251877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13251599","block":13251878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13251599","block":13251879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13251599","block":13251880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13252206","block":13261875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13252206","block":13261876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"31108666760360216657267","lastRewardBlock":"13252206","block":13261877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13252206","block":13261878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13252206","block":13261879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13252206","block":13261880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13269074","block":13271875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13269074","block":13271876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"31108666760360216657267","lastRewardBlock":"13269074","block":13271877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13269074","block":13271878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13269074","block":13271879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13269074","block":13271880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13281550","block":13281875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13281550","block":13281876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"31108666760360216657267","lastRewardBlock":"13281550","block":13281877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13281550","block":13281878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13281550","block":13281879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13281550","block":13281880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13289178","block":13291875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13289178","block":13291876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"31108666760360216657267","lastRewardBlock":"13289178","block":13291877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13289178","block":13291878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13289178","block":13291879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13289178","block":13291880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13299269","block":13301875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13299269","block":13301876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"35890556127844989142890","lastRewardBlock":"13299269","block":13301877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13299269","block":13301878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13299269","block":13301879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13299269","block":13301880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13307768","block":13311875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13307768","block":13311876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"35890556127844989142890","lastRewardBlock":"13307768","block":13311877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13307768","block":13311878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13307768","block":13311879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13307768","block":13311880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13321661","block":13321875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13321661","block":13321876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"38239250907570123122819","lastRewardBlock":"13321661","block":13321877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13321661","block":13321878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13321661","block":13321879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"5519807094845145233151","lastRewardBlock":"13321661","block":13321880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13331139","block":13331875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13331139","block":13331876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"38239250907570123122819","lastRewardBlock":"13331139","block":13331877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13331139","block":13331878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13331139","block":13331879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13331139","block":13331880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13331139","block":13341875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13331139","block":13341876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"38239250907570123122819","lastRewardBlock":"13331139","block":13341877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13331139","block":13341878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13331139","block":13341879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13331139","block":13341880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13346807","block":13351875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13346807","block":13351876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"38239250907570123122819","lastRewardBlock":"13346807","block":13351877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13346807","block":13351878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13346807","block":13351879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13346807","block":13351880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13346807","block":13361875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13346807","block":13361876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"38239250907570123122819","lastRewardBlock":"13346807","block":13361877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13346807","block":13361878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13346807","block":13361879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13346807","block":13361880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13362604","block":13371875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"47480198538818438164327","lastRewardBlock":"13362604","block":13371876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"38239250907570123122819","lastRewardBlock":"13362604","block":13371877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13362604","block":13371878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13362604","block":13371879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13362604","block":13371880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13378776","block":13381875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13378776","block":13381876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13378776","block":13381877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0x0000ce08fa224696a819877070bf378e8b131acf","bondId":4,"currentNumberOfShares":"1480607760433248019987","currentLpRewardDebt":"326842990330674284517","lastRewardBlock":"13378776","block":13381878,"bondExpirationBlock":13044314,"numberOfSharesToCompensate":"4187791150719107540"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13378776","block":13381879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13378776","block":13381880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13383651","block":13391875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13383651","block":13391876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13383651","block":13391877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13383651","block":13391879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13383651","block":13391880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13383651","block":13401875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13383651","block":13401876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13383651","block":13401877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13383651","block":13401879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13383651","block":13401880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13383651","block":13411875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13383651","block":13411876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13383651","block":13411877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13383651","block":13411879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13383651","block":13411880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13383651","block":13421875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13383651","block":13421876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13383651","block":13421877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13383651","block":13421879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13383651","block":13421880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13383651","block":13431875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13383651","block":13431876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13383651","block":13431877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13383651","block":13431879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13383651","block":13431880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13383651","block":13441875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13383651","block":13441876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13383651","block":13441877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"5286399346970823737654","lastRewardBlock":"13383651","block":13441879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13383651","block":13441880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13451507","block":13451875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13451507","block":13451876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13451507","block":13451877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13451507","block":13451879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13451507","block":13451880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13451507","block":13461875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13451507","block":13461876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13451507","block":13461877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13451507","block":13461879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13451507","block":13461880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13451507","block":13471875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13451507","block":13471876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13451507","block":13471877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13451507","block":13471879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13451507","block":13471880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13481875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13481876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13481877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13481879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13481880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13491875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13491876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13491877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13491879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13491880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13501875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13501876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13501877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13501879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13501880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13511875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13511876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13511877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13511879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13511880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13521875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13521876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13521877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13521879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13521880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13531875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13531876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13531877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13531879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13531880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13541875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13541876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13541877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13541879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13541880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13551875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13551876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13551877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13551879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13551880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13561875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13561876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13561877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13561879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13561880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13571875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13571876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13571877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13571879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13571880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13581875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13581876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13581877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13581879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13581880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13475462","block":13591875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"73013432203477698727316","lastRewardBlock":"13475462","block":13591876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13475462","block":13591877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13475462","block":13591879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13475462","block":13591880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13600240","block":13601875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13600240","block":13601876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13600240","block":13601877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13600240","block":13601879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13600240","block":13601880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13600240","block":13611875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13600240","block":13611876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13600240","block":13611877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13600240","block":13611879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13600240","block":13611880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13600240","block":13621875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13600240","block":13621876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13600240","block":13621877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13600240","block":13621879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"7885102842426780080093","lastRewardBlock":"13600240","block":13621880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13629288","block":13631875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13629288","block":13631876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13629288","block":13631877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13629288","block":13631879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13629288","block":13631880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13629288","block":13641875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13629288","block":13641876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13629288","block":13641877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13629288","block":13641879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13629288","block":13641880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13629288","block":13651875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13629288","block":13651876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13629288","block":13651877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13629288","block":13651879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13629288","block":13651880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13629288","block":13661875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13629288","block":13661876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13629288","block":13661877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13629288","block":13661879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13629288","block":13661880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13629288","block":13671875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13629288","block":13671876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13629288","block":13671877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13629288","block":13671879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13629288","block":13671880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13629288","block":13681875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13629288","block":13681876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13629288","block":13681877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"10431078319791415751986","lastRewardBlock":"13629288","block":13681879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13629288","block":13681880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13690717","block":13691875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13690717","block":13691876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13690717","block":13691877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13690717","block":13691879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13690717","block":13691880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13690717","block":13701875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13690717","block":13701876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13690717","block":13701877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13690717","block":13701879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13690717","block":13701880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13690717","block":13711875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13690717","block":13711876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13690717","block":13711877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13690717","block":13711879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13690717","block":13711880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13714176","block":13721875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13714176","block":13721876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"43784876139766316081394","lastRewardBlock":"13714176","block":13721877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13714176","block":13721879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13714176","block":13721880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13725614","block":13731875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13725614","block":13731876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13725614","block":13731877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13725614","block":13731879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13725614","block":13731880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13725614","block":13741875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13725614","block":13741876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13725614","block":13741877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13725614","block":13741879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"12889169168753334048437","lastRewardBlock":"13725614","block":13741880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13747870","block":13751875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13747870","block":13751876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13747870","block":13751877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13747870","block":13751879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"14834373073199575090996","lastRewardBlock":"13747870","block":13751880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13752825","block":13761875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13752825","block":13761876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13752825","block":13761877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13752825","block":13761879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"14834373073199575090996","lastRewardBlock":"13752825","block":13761880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13752825","block":13771875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13752825","block":13771876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13752825","block":13771877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13752825","block":13771879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"14834373073199575090996","lastRewardBlock":"13752825","block":13771880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13773046","block":13781875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13773046","block":13781876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13773046","block":13781877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13773046","block":13781879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"14834373073199575090996","lastRewardBlock":"13773046","block":13781880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13773046","block":13791875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13773046","block":13791876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13773046","block":13791877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13773046","block":13791879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"14834373073199575090996","lastRewardBlock":"13773046","block":13791880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13773046","block":13801875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13773046","block":13801876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13773046","block":13801877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13773046","block":13801879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"14834373073199575090996","lastRewardBlock":"13773046","block":13801880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13804645","block":13811875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13804645","block":13811876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13804645","block":13811877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13804645","block":13811879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"14834373073199575090996","lastRewardBlock":"13804645","block":13811880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13811980","block":13821875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13811980","block":13821876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13811980","block":13821877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13811980","block":13821879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"15993994943138362747623","lastRewardBlock":"13811980","block":13821880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13811980","block":13831875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13811980","block":13831876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13811980","block":13831877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13811980","block":13831879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"15993994943138362747623","lastRewardBlock":"13811980","block":13831880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13811980","block":13841875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13811980","block":13841876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13811980","block":13841877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13811980","block":13841879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"15993994943138362747623","lastRewardBlock":"13811980","block":13841880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13811980","block":13851875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"102395956052802586332489","lastRewardBlock":"13811980","block":13851876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13811980","block":13851877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13811980","block":13851879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"15993994943138362747623","lastRewardBlock":"13811980","block":13851880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13860355","block":13861875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13860355","block":13861876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13860355","block":13861877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13860355","block":13861879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"15993994943138362747623","lastRewardBlock":"13860355","block":13861880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13860355","block":13871875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13860355","block":13871876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13860355","block":13871877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13860355","block":13871879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"15993994943138362747623","lastRewardBlock":"13860355","block":13871880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13878632","block":13881875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13878632","block":13881876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13878632","block":13881877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13878632","block":13881879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"15993994943138362747623","lastRewardBlock":"13878632","block":13881880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13878632","block":13891875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13878632","block":13891876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13878632","block":13891877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13878632","block":13891879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"15993994943138362747623","lastRewardBlock":"13878632","block":13891880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13892849","block":13901875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13892849","block":13901876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13892849","block":13901877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13892849","block":13901879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"15993994943138362747623","lastRewardBlock":"13892849","block":13901880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13892849","block":13911875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13892849","block":13911876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13892849","block":13911877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13892849","block":13911879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"15993994943138362747623","lastRewardBlock":"13892849","block":13911880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13914150","block":13921875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13914150","block":13921876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13914150","block":13921877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13914150","block":13921879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"13914150","block":13921880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13914150","block":13931875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13914150","block":13931876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13914150","block":13931877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13914150","block":13931879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"13914150","block":13931880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13914150","block":13941875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13914150","block":13941876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13914150","block":13941877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13914150","block":13941879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"13914150","block":13941880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13914150","block":13951875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13914150","block":13951876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13914150","block":13951877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13914150","block":13951879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"13914150","block":13951880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13961197","block":13961875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13961197","block":13961876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13961197","block":13961877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13961197","block":13961879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"13961197","block":13961880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13961197","block":13971875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13961197","block":13971876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13961197","block":13971877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13961197","block":13971879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"13961197","block":13971880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13961197","block":13981875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13961197","block":13981876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13961197","block":13981877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13961197","block":13981879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"13961197","block":13981880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13982741","block":13991875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13982741","block":13991876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13982741","block":13991877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13982741","block":13991879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"13982741","block":13991880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13982741","block":14001875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13982741","block":14001876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13982741","block":14001877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13982741","block":14001879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"13982741","block":14001880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"13982741","block":14011875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"13982741","block":14011876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"13982741","block":14011877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"13982741","block":14011879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"13982741","block":14011880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14014176","block":14021875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14014176","block":14021876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14014176","block":14021877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14014176","block":14021879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14014176","block":14021880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14014176","block":14031875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14014176","block":14031876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14014176","block":14031877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14014176","block":14031879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14014176","block":14031880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14014176","block":14041875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14014176","block":14041876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14014176","block":14041877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14014176","block":14041879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14014176","block":14041880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14014176","block":14051875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14014176","block":14051876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14014176","block":14051877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14014176","block":14051879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14014176","block":14051880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14014176","block":14061875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14014176","block":14061876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14014176","block":14061877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14014176","block":14061879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14014176","block":14061880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14014176","block":14071875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14014176","block":14071876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14014176","block":14071877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14014176","block":14071879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14014176","block":14071880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14014176","block":14081875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14014176","block":14081876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14014176","block":14081877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14014176","block":14081879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14014176","block":14081880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14014176","block":14091875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14014176","block":14091876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14014176","block":14091877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14014176","block":14091879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14014176","block":14091880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14014176","block":14101875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14014176","block":14101876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14014176","block":14101877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14014176","block":14101879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14014176","block":14101880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14105918","block":14111875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14105918","block":14111876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14105918","block":14111877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14105918","block":14111879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14105918","block":14111880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14105918","block":14121875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14105918","block":14121876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14105918","block":14121877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14105918","block":14121879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14105918","block":14121880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14105918","block":14131875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14105918","block":14131876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14105918","block":14131877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14105918","block":14131879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14105918","block":14131880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14105918","block":14141875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14105918","block":14141876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14105918","block":14141877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14105918","block":14141879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14105918","block":14141880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14105918","block":14151875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14105918","block":14151876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14105918","block":14151877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14105918","block":14151879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14105918","block":14151880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14105918","block":14161875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14105918","block":14161876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14105918","block":14161877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14105918","block":14161879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14105918","block":14161880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14105918","block":14171875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14105918","block":14171876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14105918","block":14171877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14105918","block":14171879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14105918","block":14171880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14180189","block":14181875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14180189","block":14181876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14180189","block":14181877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14180189","block":14181879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14180189","block":14181880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14180189","block":14191875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14180189","block":14191876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14180189","block":14191877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14180189","block":14191879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14180189","block":14191880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14200345","block":14201875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14200345","block":14201876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14200345","block":14201877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14200345","block":14201879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14200345","block":14201880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14200345","block":14211875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14200345","block":14211876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14200345","block":14211877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14200345","block":14211879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14200345","block":14211880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14215881","block":14221875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"140416947351327964361459","lastRewardBlock":"14215881","block":14221876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14215881","block":14221877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14215881","block":14221879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14215881","block":14221880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14228313","block":14231875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"207931667955371038408796","lastRewardBlock":"14228313","block":14231876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14228313","block":14231877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14228313","block":14231879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14228313","block":14231880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14228313","block":14241875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"207931667955371038408796","lastRewardBlock":"14228313","block":14241876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14228313","block":14241877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14228313","block":14241879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14228313","block":14241880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14228313","block":14251875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"207931667955371038408796","lastRewardBlock":"14228313","block":14251876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14228313","block":14251877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14228313","block":14251879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14228313","block":14251880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14228313","block":14261875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"207931667955371038408796","lastRewardBlock":"14228313","block":14261876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14228313","block":14261877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14228313","block":14261879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14228313","block":14261880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14228313","block":14271875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"207931667955371038408796","lastRewardBlock":"14228313","block":14271876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14228313","block":14271877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14228313","block":14271879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14228313","block":14271880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14277842","block":14281875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"207931667955371038408796","lastRewardBlock":"14277842","block":14281876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14277842","block":14281877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14277842","block":14281879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14277842","block":14281880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14277842","block":14291875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"207931667955371038408796","lastRewardBlock":"14277842","block":14291876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14277842","block":14291877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14277842","block":14291879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14277842","block":14291880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14277842","block":14301875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"207931667955371038408796","lastRewardBlock":"14277842","block":14301876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14277842","block":14301877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14277842","block":14301879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14277842","block":14301880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14277842","block":14311875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"207931667955371038408796","lastRewardBlock":"14277842","block":14311876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14277842","block":14311877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14277842","block":14311879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14277842","block":14311880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14277842","block":14321875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"207931667955371038408796","lastRewardBlock":"14277842","block":14321876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14277842","block":14321877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14277842","block":14321879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14277842","block":14321880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14277842","block":14331875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"207931667955371038408796","lastRewardBlock":"14277842","block":14331876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14277842","block":14331877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14277842","block":14331879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14277842","block":14331880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14334784","block":14341875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14334784","block":14341876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14334784","block":14341877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14334784","block":14341879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14334784","block":14341880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14334784","block":14351875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14334784","block":14351876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14334784","block":14351877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14334784","block":14351879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14334784","block":14351880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14334784","block":14361875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14334784","block":14361876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14334784","block":14361877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14334784","block":14361879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14334784","block":14361880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14334784","block":14371875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14334784","block":14371876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14334784","block":14371877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14334784","block":14371879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14334784","block":14371880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14334784","block":14381875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14334784","block":14381876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14334784","block":14381877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14334784","block":14381879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14334784","block":14381880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14334784","block":14391875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14334784","block":14391876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14334784","block":14391877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14334784","block":14391879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14334784","block":14391880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14334784","block":14401875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14334784","block":14401876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14334784","block":14401877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14334784","block":14401879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14334784","block":14401880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14406441","block":14411875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14406441","block":14411876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14406441","block":14411877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14406441","block":14411879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14406441","block":14411880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14406441","block":14421875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14406441","block":14421876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14406441","block":14421877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14406441","block":14421879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14406441","block":14421880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14406441","block":14431875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14406441","block":14431876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14406441","block":14431877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14406441","block":14431879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14406441","block":14431880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14406441","block":14441875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14406441","block":14441876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14406441","block":14441877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14406441","block":14441879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14406441","block":14441880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14406441","block":14451875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14406441","block":14451876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14406441","block":14451877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14406441","block":14451879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14406441","block":14451880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14453602","block":14461875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14453602","block":14461876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14453602","block":14461877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14453602","block":14461879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14453602","block":14461880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14453602","block":14471875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14453602","block":14471876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14453602","block":14471877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14453602","block":14471879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14453602","block":14471880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14453602","block":14481875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14453602","block":14481876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14453602","block":14481877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14453602","block":14481879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14453602","block":14481880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14453602","block":14491875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14453602","block":14491876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14453602","block":14491877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14453602","block":14491879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14453602","block":14491880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14501815","block":14501875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14501815","block":14501876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14501815","block":14501877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14501815","block":14501879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14501815","block":14501880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14501815","block":14511875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14501815","block":14511876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14501815","block":14511877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14501815","block":14511879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14501815","block":14511880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14501815","block":14521875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14501815","block":14521876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14501815","block":14521877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14501815","block":14521879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"18028265529843295748112","lastRewardBlock":"14501815","block":14521880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14528446","block":14531875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14528446","block":14531876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14528446","block":14531877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14528446","block":14531879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14528446","block":14531880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14528446","block":14541875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14528446","block":14541876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14528446","block":14541877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14528446","block":14541879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14528446","block":14541880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14546954","block":14551875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14546954","block":14551876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14546954","block":14551877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14546954","block":14551879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14546954","block":14551880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14546954","block":14561875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14546954","block":14561876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14546954","block":14561877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14546954","block":14561879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14546954","block":14561880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14546954","block":14571875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14546954","block":14571876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14546954","block":14571877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14546954","block":14571879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14546954","block":14571880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14546954","block":14581875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14546954","block":14581876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14546954","block":14581877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14546954","block":14581879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14546954","block":14581880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14546954","block":14591875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14546954","block":14591876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14546954","block":14591877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14546954","block":14591879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14546954","block":14591880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14546954","block":14601875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14546954","block":14601876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14546954","block":14601877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14546954","block":14601879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14546954","block":14601880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14610787","block":14611875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14610787","block":14611876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14610787","block":14611877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14610787","block":14611879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14610787","block":14611880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14610787","block":14621875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14610787","block":14621876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14610787","block":14621877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14610787","block":14621879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14610787","block":14621880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14610787","block":14631875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"226554883946813776987399","lastRewardBlock":"14610787","block":14631876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14610787","block":14631877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14610787","block":14631879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14610787","block":14631880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14641875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14641876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14641877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14641879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14641880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14651875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14651876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14651877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14651879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14651880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14661875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14661876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14661877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14661879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14661880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14671875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14671876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14671877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14671879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14671880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14681875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14681876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14681877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14681879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14681880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14691875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14691876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14691877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14691879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14691880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14701875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14701876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14701877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14701879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14701880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14711875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14711876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14711877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14711879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14711880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14721875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14721876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14721877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14721879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14721880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14731875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14731876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14731877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14731879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14731880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14741875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14741876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14741877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14741879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14741880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14751875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14751876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14751877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14751879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14751880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14761875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14761876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14761877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14761879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14761880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14634429","block":14771875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14634429","block":14771876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14634429","block":14771877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14634429","block":14771879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14634429","block":14771880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14776437","block":14781875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14776437","block":14781876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"71993905212148320379990","lastRewardBlock":"14776437","block":14781877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14776437","block":14781879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14776437","block":14781880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14783801","block":14791875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14783801","block":14791876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"177943991426784835462249","lastRewardBlock":"14783801","block":14791877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14783801","block":14791879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14783801","block":14791880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14783801","block":14801875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14783801","block":14801876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"177943991426784835462249","lastRewardBlock":"14783801","block":14801877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14783801","block":14801879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14783801","block":14801880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14783801","block":14811875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14783801","block":14811876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"177943991426784835462249","lastRewardBlock":"14783801","block":14811877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14783801","block":14811879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14783801","block":14811880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14783801","block":14821875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14783801","block":14821876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"177943991426784835462249","lastRewardBlock":"14783801","block":14821877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14783801","block":14821879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14783801","block":14821880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14783801","block":14831875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14783801","block":14831876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"177943991426784835462249","lastRewardBlock":"14783801","block":14831877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14783801","block":14831879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14783801","block":14831880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14841811","block":14841875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14841811","block":14841876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"177943991426784835462249","lastRewardBlock":"14841811","block":14841877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14841811","block":14841879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14841811","block":14841880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14841811","block":14851875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14841811","block":14851876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"177943991426784835462249","lastRewardBlock":"14841811","block":14851877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14841811","block":14851879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14841811","block":14851880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14841811","block":14861875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14841811","block":14861876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"177943991426784835462249","lastRewardBlock":"14841811","block":14861877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14841811","block":14861879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14841811","block":14861880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14871875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14871876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14871877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14871879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14871880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14881875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14881876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14881877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14881879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14881880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14891875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14891876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14891877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14891879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14891880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14901875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14901876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14901877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14901879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14901880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14911875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14911876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14911877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14911879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14911880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14921875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14921876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14921877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14921879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14921880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14931875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14931876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14931877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14931879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14931880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14941875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14941876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14941877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14941879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14941880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14951875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14951876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14951877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14951879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14951880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14961875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14961876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14961877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14961879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14961880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14971875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14971876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14971877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14971879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14971880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14981875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14981876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14981877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14981879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14981880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":14991875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":14991876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":14991877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":14991879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":14991880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"14862299","block":15001875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"14862299","block":15001876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"184526404702160871086491","lastRewardBlock":"14862299","block":15001877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"14862299","block":15001879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"14862299","block":15001880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15011875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15011876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15011877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15011879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15011880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15021875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15021876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15021877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15021879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15021880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15031875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15031876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15031877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15031879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15031880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15041875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15041876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15041877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15041879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15041880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15051875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15051876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15051877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15051879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15051880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15061875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15061876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15061877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15061879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15061880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15071875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15071876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15071877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15071879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15071880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15081875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15081876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15081877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15081879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15081880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15091875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15091876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15091877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15091879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15091880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15101875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15101876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15101877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15101879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15101880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15111875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15111876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15111877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15111879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15111880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15121875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15121876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15121877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15121879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15121880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15004358","block":15131875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"275366919377677643061354","lastRewardBlock":"15004358","block":15131876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15004358","block":15131877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15004358","block":15131879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15004358","block":15131880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15137997","block":15141875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"339081062568025157719774","lastRewardBlock":"15137997","block":15141876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15137997","block":15141877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15137997","block":15141879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15137997","block":15141880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"339081062568025157719774","lastRewardBlock":"15137997","block":15151876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15137997","block":15151877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15137997","block":15151879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15137997","block":15151880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15156956","block":15161875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"339081062568025157719774","lastRewardBlock":"15156956","block":15161876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15156956","block":15161877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15156956","block":15161879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15156956","block":15161880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15162376","block":15171875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"339081062568025157719774","lastRewardBlock":"15162376","block":15171876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15162376","block":15171877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15162376","block":15171879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15162376","block":15171880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15162376","block":15181875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"339081062568025157719774","lastRewardBlock":"15162376","block":15181876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15162376","block":15181877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15162376","block":15181879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15162376","block":15181880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15162376","block":15191875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"339081062568025157719774","lastRewardBlock":"15162376","block":15191876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15162376","block":15191877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15162376","block":15191879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15162376","block":15191880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15162376","block":15201875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"339081062568025157719774","lastRewardBlock":"15162376","block":15201876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15162376","block":15201877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15162376","block":15201879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15162376","block":15201880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15162376","block":15211875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"339081062568025157719774","lastRewardBlock":"15162376","block":15211876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15162376","block":15211877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15162376","block":15211879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15162376","block":15211880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15213831","block":15221875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"339081062568025157719774","lastRewardBlock":"15213831","block":15221876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15213831","block":15221877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15213831","block":15221879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15213831","block":15221880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15222818","block":15231875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15222818","block":15231876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15222818","block":15231877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15222818","block":15231879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15222818","block":15231880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15222818","block":15241875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15222818","block":15241876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15222818","block":15241877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15222818","block":15241879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15222818","block":15241880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15222818","block":15251875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15222818","block":15251876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15222818","block":15251877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15222818","block":15251879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15222818","block":15251880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15222818","block":15261875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15222818","block":15261876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15222818","block":15261877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15222818","block":15261879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15222818","block":15261880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15222818","block":15271875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15222818","block":15271876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15222818","block":15271877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15222818","block":15271879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15222818","block":15271880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15222818","block":15281875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15222818","block":15281876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15222818","block":15281877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15222818","block":15281879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15222818","block":15281880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15287601","block":15291875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15287601","block":15291876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15287601","block":15291877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15287601","block":15291879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15287601","block":15291880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15287601","block":15301875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15287601","block":15301876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15287601","block":15301877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15287601","block":15301879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15287601","block":15301880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15287601","block":15311875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15287601","block":15311876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15287601","block":15311877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15287601","block":15311879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15287601","block":15311880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15287601","block":15321875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15287601","block":15321876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15287601","block":15321877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15287601","block":15321879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15287601","block":15321880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15287601","block":15331875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15287601","block":15331876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15287601","block":15331877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15287601","block":15331879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15287601","block":15331880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15287601","block":15341875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15287601","block":15341876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15287601","block":15341877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15287601","block":15341879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15287601","block":15341880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15287601","block":15351875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15287601","block":15351876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15287601","block":15351877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15287601","block":15351879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15287601","block":15351880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15287601","block":15361875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15287601","block":15361876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15287601","block":15361877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15287601","block":15361879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15287601","block":15361880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15287601","block":15371875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15287601","block":15371876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15287601","block":15371877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15287601","block":15371879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15287601","block":15371880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15287601","block":15381875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15287601","block":15381876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15287601","block":15381877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15287601","block":15381879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15287601","block":15381880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15287601","block":15391875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"348468613894449490587013","lastRewardBlock":"15287601","block":15391876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15287601","block":15391877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15287601","block":15391879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15287601","block":15391880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15401875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15401876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15401877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15401879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15401880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15411875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15411876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15411877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15411879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15411880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15421875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15421876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15421877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15421879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15421880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15431875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15431876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15431877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15431879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15431880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15441875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15441876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15441877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15441879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15441880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15451875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15451876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15451877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15451879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15451880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15461875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15461876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15461877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15461879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15461880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15471875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15471876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15471877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15471879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15471880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15481875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15481876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15481877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15481879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15481880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15491875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15491876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15491877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15491879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15491880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15501875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15501876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15501877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15501879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15501880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15511875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15511876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15511877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15511879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15511880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15521875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15521876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15521877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15521879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15521880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15531875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15531876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15531877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15531879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15531880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15394365","block":15541875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15394365","block":15541876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15394365","block":15541877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15394365","block":15541879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15394365","block":15541880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15549982","block":15551875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15549982","block":15551876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15549982","block":15551877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15549982","block":15551879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15549982","block":15551880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15549982","block":15561875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15549982","block":15561876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15549982","block":15561877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15549982","block":15561879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15549982","block":15561880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15549982","block":15571875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15549982","block":15571876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15549982","block":15571877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15549982","block":15571879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15549982","block":15571880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15549982","block":15581875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15549982","block":15581876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15549982","block":15581877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15549982","block":15581879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15549982","block":15581880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15549982","block":15591875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15549982","block":15591876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15549982","block":15591877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15549982","block":15591879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15549982","block":15591880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15593959","block":15601875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15593959","block":15601876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15593959","block":15601877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15593959","block":15601879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15593959","block":15601880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15593959","block":15611875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15593959","block":15611876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15593959","block":15611877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15593959","block":15611879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15593959","block":15611880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15593959","block":15621875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15593959","block":15621876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15593959","block":15621877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15593959","block":15621879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15593959","block":15621880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15593959","block":15631875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15593959","block":15631876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15593959","block":15631877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15593959","block":15631879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15593959","block":15631880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15593959","block":15641875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15593959","block":15641876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15593959","block":15641877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15593959","block":15641879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15593959","block":15641880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15650533","block":15651875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15650533","block":15651876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15650533","block":15651877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15650533","block":15651879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15650533","block":15651880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15650533","block":15661875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15650533","block":15661876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"194671893865565164830100","lastRewardBlock":"15650533","block":15661877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15650533","block":15661879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15650533","block":15661880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15670844","block":15671875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15670844","block":15671876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15670844","block":15671877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15670844","block":15671879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15670844","block":15671880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15681027","block":15681875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15681027","block":15681876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15681027","block":15681877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15681027","block":15681879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15681027","block":15681880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15681027","block":15691875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15681027","block":15691876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15681027","block":15691877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15681027","block":15691879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15681027","block":15691880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15681027","block":15701875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15681027","block":15701876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15681027","block":15701877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15681027","block":15701879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15681027","block":15701880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15703928","block":15711875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15703928","block":15711876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15703928","block":15711877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15703928","block":15711879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15703928","block":15711880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15703928","block":15721875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15703928","block":15721876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15703928","block":15721877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15703928","block":15721879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15703928","block":15721880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15703928","block":15731875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15703928","block":15731876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15703928","block":15731877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15703928","block":15731879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15703928","block":15731880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15703928","block":15741875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15703928","block":15741876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15703928","block":15741877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15703928","block":15741879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15703928","block":15741880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15703928","block":15751875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15703928","block":15751876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15703928","block":15751877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15703928","block":15751879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15703928","block":15751880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15703928","block":15761875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15703928","block":15761876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15703928","block":15761877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15703928","block":15761879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15703928","block":15761880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15703928","block":15771875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15703928","block":15771876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15703928","block":15771877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15703928","block":15771879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15703928","block":15771880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15781875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15781876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15781877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15781879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15781880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15791875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15791876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15791877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15791879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15791880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15801875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15801876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15801877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15801879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15801880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15811875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15811876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15811877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15811879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15811880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15821875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15821876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15821877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15821879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15821880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15831875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15831876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15831877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15831879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15831880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15841875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15841876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15841877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15841879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15841880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15851875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15851876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15851877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15851879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15851880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15861875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15861876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15861877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15861879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15861880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15871875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15871876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15871877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15871879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15871880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15881875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15881876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15881877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15881879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15881880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15891875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15891876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15891877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15891879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15891880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15901875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15901876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15901877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15901879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15901880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15911875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15911876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15911877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15911879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15911880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15921875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15921876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15921877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15921879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15921880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15931875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15931876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15931877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15931879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15931880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15941875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15941876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15941877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15941879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15941880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15951875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15951876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15951877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15951879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15951880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15772879","block":15961875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15772879","block":15961876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15772879","block":15961877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15772879","block":15961879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15772879","block":15961880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15966432","block":15971875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15966432","block":15971876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"239727779592873336892090","lastRewardBlock":"15966432","block":15971877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15966432","block":15971879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15966432","block":15971880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15972794","block":15981875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15972794","block":15981876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"15972794","block":15981877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15972794","block":15981879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15972794","block":15981880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15972794","block":15991875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15972794","block":15991876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"15972794","block":15991877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15972794","block":15991879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15972794","block":15991880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15972794","block":16001875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15972794","block":16001876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"15972794","block":16001877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15972794","block":16001879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15972794","block":16001880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15972794","block":16011875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15972794","block":16011876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"15972794","block":16011877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15972794","block":16011879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15972794","block":16011880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15972794","block":16021875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15972794","block":16021876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"15972794","block":16021877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15972794","block":16021879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15972794","block":16021880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15972794","block":16031875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15972794","block":16031876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"15972794","block":16031877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15972794","block":16031879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15972794","block":16031880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15972794","block":16041875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15972794","block":16041876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"15972794","block":16041877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15972794","block":16041879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15972794","block":16041880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"15972794","block":16051875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"368109000673180705906168","lastRewardBlock":"15972794","block":16051876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"15972794","block":16051877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"15972794","block":16051879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"15972794","block":16051880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16053155","block":16061875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"443494923990629932772240","lastRewardBlock":"16053155","block":16061876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16053155","block":16061877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16053155","block":16061879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16053155","block":16061880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16053155","block":16071875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"443494923990629932772240","lastRewardBlock":"16053155","block":16071876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16053155","block":16071877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16053155","block":16071879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16053155","block":16071880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16053155","block":16081875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"443494923990629932772240","lastRewardBlock":"16053155","block":16081876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16053155","block":16081877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16053155","block":16081879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16053155","block":16081880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16053155","block":16091875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"443494923990629932772240","lastRewardBlock":"16053155","block":16091876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16053155","block":16091877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16053155","block":16091879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16053155","block":16091880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16053155","block":16101875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"443494923990629932772240","lastRewardBlock":"16053155","block":16101876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16053155","block":16101877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16053155","block":16101879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16053155","block":16101880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16053155","block":16111875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"443494923990629932772240","lastRewardBlock":"16053155","block":16111876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16053155","block":16111877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16053155","block":16111879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16053155","block":16111880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16115913","block":16121875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"443494923990629932772240","lastRewardBlock":"16115913","block":16121876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16115913","block":16121877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16115913","block":16121879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16115913","block":16121880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16129261","block":16131875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16129261","block":16131876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16129261","block":16131877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16129261","block":16131879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16129261","block":16131880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16129261","block":16141875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16129261","block":16141876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16129261","block":16141877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16129261","block":16141879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16129261","block":16141880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16149790","block":16151875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16149790","block":16151876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16149790","block":16151877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16149790","block":16151879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16149790","block":16151880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16149790","block":16161875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16149790","block":16161876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16149790","block":16161877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16149790","block":16161879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16149790","block":16161880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16149790","block":16171875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16149790","block":16171876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16149790","block":16171877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16149790","block":16171879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16149790","block":16171880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16149790","block":16181875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16149790","block":16181876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"260451466064642821411101","lastRewardBlock":"16149790","block":16181877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16149790","block":16181879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16149790","block":16181880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16191699","block":16191875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16191699","block":16191876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16191699","block":16191877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16191699","block":16191879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16191699","block":16191880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16191699","block":16201875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16191699","block":16201876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16191699","block":16201877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16191699","block":16201879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16191699","block":16201880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16191699","block":16211875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16191699","block":16211876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16191699","block":16211877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16191699","block":16211879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16191699","block":16211880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16191699","block":16221875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16191699","block":16221876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16191699","block":16221877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16191699","block":16221879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16191699","block":16221880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16191699","block":16231875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16191699","block":16231876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16191699","block":16231877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16191699","block":16231879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16191699","block":16231880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16236908","block":16241875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16236908","block":16241876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16236908","block":16241877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16236908","block":16241879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16236908","block":16241880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16236908","block":16251875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16236908","block":16251876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16236908","block":16251877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16236908","block":16251879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16236908","block":16251880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16236908","block":16261875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16236908","block":16261876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16236908","block":16261877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16236908","block":16261879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16236908","block":16261880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16236908","block":16271875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16236908","block":16271876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16236908","block":16271877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16236908","block":16271879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16236908","block":16271880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16236908","block":16281875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16236908","block":16281876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16236908","block":16281877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16236908","block":16281879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16236908","block":16281880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16236908","block":16291875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16236908","block":16291876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16236908","block":16291877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16236908","block":16291879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16236908","block":16291880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16236908","block":16301875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16236908","block":16301876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16236908","block":16301877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16236908","block":16301879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16236908","block":16301880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16236908","block":16311875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"452079136978034351167332","lastRewardBlock":"16236908","block":16311876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16236908","block":16311877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16236908","block":16311879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16236908","block":16311880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16315948","block":16321875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16315948","block":16321876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16315948","block":16321877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16315948","block":16321879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16315948","block":16321880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16315948","block":16331875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16315948","block":16331876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16315948","block":16331877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16315948","block":16331879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16315948","block":16331880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16315948","block":16341875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16315948","block":16341876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16315948","block":16341877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16315948","block":16341879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16315948","block":16341880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16351875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16351876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16351877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16351879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16351880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16361875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16361876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16361877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16361879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16361880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16371875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16371876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16371877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16371879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16371880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16381875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16381876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16381877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16381879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16381880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16391875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16391876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16391877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16391879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16391880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16401875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16401876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16401877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16401879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16401880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16411875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16411876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16411877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16411879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16411880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16421875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16421876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16421877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16421879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16421880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16431875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16431876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16431877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16431879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16431880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16441875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16441876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16441877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16441879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16441880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16451875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16451876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16451877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16451879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16451880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16461875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16461876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16461877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16461879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16461880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16471875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16471876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16471877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16471879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16471880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16481875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16481876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16481877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16481879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16481880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16491875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16491876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16491877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16491879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16491880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16501875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16501876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16501877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16501879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16501880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16511875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16511876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16511877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16511879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16511880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16521875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16521876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16521877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16521879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16521880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16531875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16531876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16531877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16531879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16531880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16349785","block":16541875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"473150385103033557128059","lastRewardBlock":"16349785","block":16541876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16349785","block":16541877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16349785","block":16541879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16349785","block":16541880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16550363","block":16551875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16550363","block":16551876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16550363","block":16551877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16550363","block":16551879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16550363","block":16551880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16550363","block":16561875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16550363","block":16561876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16550363","block":16561877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16550363","block":16561879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16550363","block":16561880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16550363","block":16571875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16550363","block":16571876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16550363","block":16571877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16550363","block":16571879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16550363","block":16571880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16574210","block":16581875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16574210","block":16581876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16574210","block":16581877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16574210","block":16581879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16574210","block":16581880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16574210","block":16591875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16574210","block":16591876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16574210","block":16591877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16574210","block":16591879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16574210","block":16591880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16574210","block":16601875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16574210","block":16601876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16574210","block":16601877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16574210","block":16601879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16574210","block":16601880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16574210","block":16611875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16574210","block":16611876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16574210","block":16611877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16574210","block":16611879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16574210","block":16611880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16574210","block":16621875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16574210","block":16621876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16574210","block":16621877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16574210","block":16621879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16574210","block":16621880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16574210","block":16631875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16574210","block":16631876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16574210","block":16631877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16574210","block":16631879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16574210","block":16631880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16574210","block":16641875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16574210","block":16641876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16574210","block":16641877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16574210","block":16641879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16574210","block":16641880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16574210","block":16651875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16574210","block":16651876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16574210","block":16651877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16574210","block":16651879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16574210","block":16651880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16574210","block":16661875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16574210","block":16661876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16574210","block":16661877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16574210","block":16661879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16574210","block":16661880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16664112","block":16671875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16664112","block":16671876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16664112","block":16671877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16664112","block":16671879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16664112","block":16671880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16664112","block":16681875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16664112","block":16681876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16664112","block":16681877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16664112","block":16681879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16664112","block":16681880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16664112","block":16691875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16664112","block":16691876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16664112","block":16691877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16664112","block":16691879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16664112","block":16691880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16701875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16701876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16701877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16701879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16701880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16711875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16711876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16711877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16711879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16711880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16721875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16721876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16721877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16721879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16721880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16731875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16731876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16731877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16731879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16731880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16741875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16741876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16741877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16741879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16741880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16751875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16751876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16751877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16751879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16751880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16761875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16761876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16761877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16761879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16761880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16771875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16771876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16771877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16771879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16771880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16781875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16781876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16781877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16781879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16781880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16791875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16791876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16791877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16791879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16791880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16801875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16801876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16801877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16801879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16801880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16700368","block":16811875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16700368","block":16811876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16700368","block":16811877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16700368","block":16811879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16700368","block":16811880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16821875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16821876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16821877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16821879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16821880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16831875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16831876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16831877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16831879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16831880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16841875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16841876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16841877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16841879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16841880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16851875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16851876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16851877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16851879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16851880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16861875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16861876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16861877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16861879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16861880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16871875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16871876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16871877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16871879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16871880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16881875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16881876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16881877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16881879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16881880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16891875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16891876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16891877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16891879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16891880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16901875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16901876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16901877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16901879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16901880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16911875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16911876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16911877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16911879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16911880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16921875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16921876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16921877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16921879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16921880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16931875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16931876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16931877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16931879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16931880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16941875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16941876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16941877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16941879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16941880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16951875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16951876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16951877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16951879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16951880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16961875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16961876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16961877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16961879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16961880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16820998","block":16971875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"499332164456421093903805","lastRewardBlock":"16820998","block":16971876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16820998","block":16971877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16820998","block":16971879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16820998","block":16971880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16972080","block":16981875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"16972080","block":16981876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16972080","block":16981877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16972080","block":16981879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16972080","block":16981880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16972080","block":16991875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"16972080","block":16991876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16972080","block":16991877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16972080","block":16991879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16972080","block":16991880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16972080","block":17001875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"16972080","block":17001876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16972080","block":17001877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16972080","block":17001879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16972080","block":17001880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16972080","block":17011875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"16972080","block":17011876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16972080","block":17011877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16972080","block":17011879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16972080","block":17011880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16972080","block":17021875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"16972080","block":17021876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16972080","block":17021877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16972080","block":17021879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16972080","block":17021880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"16972080","block":17031875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"16972080","block":17031876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"16972080","block":17031877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"16972080","block":17031879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"16972080","block":17031880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17041875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17041876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17041877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17041879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17041880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17051875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17051876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17051877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17051879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17051880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17061875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17061876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17061877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17061879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17061880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17071875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17071876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17071877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17071879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17071880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17081875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17081876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17081877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17081879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17081880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17091875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17091876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17091877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17091879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17091880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17101875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17101876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17101877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17101879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17101880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17111875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17111876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17111877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17111879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17111880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17121875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17121876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17121877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17121879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17121880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17131875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17131876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17131877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17131879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17131880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17141875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17141876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17141877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17141879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17141880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17151875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17151876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17151877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17151879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17151880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17161875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17161876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17161877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17161879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17161880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17171875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17171876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17171877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17171879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17171880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17181875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17181876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17181877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17181879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17181880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17191875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17191876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17191877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17191879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17191880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17201875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17201876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17201877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17201879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17201880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17211875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17211876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17211877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17211879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17211880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17221875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17221876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17221877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17221879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17221880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17231875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17231876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17231877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17231879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17231880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17241875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17241876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17241877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17241879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17241880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17251875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17251876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17251877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17251879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17251880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17261875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17261876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17261877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17261879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17261880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17271875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17271876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17271877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17271879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17271880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17033277","block":17281875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17033277","block":17281876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17033277","block":17281877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17033277","block":17281879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17033277","block":17281880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17281893","block":17291875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17281893","block":17291876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17281893","block":17291877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17281893","block":17291879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17281893","block":17291880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17281893","block":17301875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17281893","block":17301876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17281893","block":17301877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17281893","block":17301879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17281893","block":17301880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17281893","block":17311875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17281893","block":17311876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17281893","block":17311877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17281893","block":17311879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17281893","block":17311880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17281893","block":17321875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17281893","block":17321876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17281893","block":17321877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17281893","block":17321879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17281893","block":17321880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17281893","block":17331875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17281893","block":17331876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17281893","block":17331877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17281893","block":17331879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17281893","block":17331880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17281893","block":17341875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17281893","block":17341876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17281893","block":17341877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17281893","block":17341879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17281893","block":17341880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17281893","block":17351875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17281893","block":17351876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17281893","block":17351877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17281893","block":17351879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17281893","block":17351880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17281893","block":17361875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17281893","block":17361876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17281893","block":17361877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17281893","block":17361879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17281893","block":17361880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17281893","block":17371875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17281893","block":17371876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17281893","block":17371877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17281893","block":17371879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17281893","block":17371880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17281893","block":17381875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17281893","block":17381876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"275378964357066925313634","lastRewardBlock":"17281893","block":17381877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17281893","block":17381879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17281893","block":17381880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17391875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17391876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17391877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17391879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17391880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17401875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17401876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17401877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17401879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17401880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17411875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17411876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17411877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17411879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17411880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17421875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17421876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17421877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17421879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17421880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17431875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17431876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17431877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17431879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17431880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17441875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17441876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17441877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17441879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17441880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17451875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17451876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17451877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17451879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17451880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17461875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17461876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17461877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17461879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17461880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17471875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17471876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17471877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17471879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17471880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17481875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17481876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17481877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17481879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17481880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17491875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17491876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17491877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17491879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17491880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17501875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17501876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17501877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17501879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17501880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17511875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17511876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17511877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17511879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17511880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17386864","block":17521875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17386864","block":17521876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"356244758990984379371756","lastRewardBlock":"17386864","block":17521877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17386864","block":17521879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17386864","block":17521880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17529653","block":17531875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17529653","block":17531876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17529653","block":17531877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17529653","block":17531879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17529653","block":17531880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17529653","block":17541875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17529653","block":17541876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17529653","block":17541877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17529653","block":17541879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17529653","block":17541880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17529653","block":17551875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17529653","block":17551876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17529653","block":17551877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17529653","block":17551879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17529653","block":17551880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17529653","block":17561875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17529653","block":17561876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17529653","block":17561877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17529653","block":17561879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17529653","block":17561880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17529653","block":17571875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17529653","block":17571876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17529653","block":17571877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17529653","block":17571879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17529653","block":17571880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17529653","block":17581875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17529653","block":17581876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17529653","block":17581877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17529653","block":17581879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17529653","block":17581880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17529653","block":17591875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17529653","block":17591876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17529653","block":17591877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17529653","block":17591879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17529653","block":17591880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17529653","block":17601875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17529653","block":17601876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17529653","block":17601877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17529653","block":17601879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17529653","block":17601880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17610905","block":17611875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17610905","block":17611876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17610905","block":17611877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17610905","block":17611879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17610905","block":17611880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17610905","block":17621875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17610905","block":17621876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17610905","block":17621877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17610905","block":17621879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17610905","block":17621880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17610905","block":17631875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17610905","block":17631876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17610905","block":17631877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17610905","block":17631879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17610905","block":17631880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17610905","block":17641875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17610905","block":17641876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17610905","block":17641877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17610905","block":17641879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17610905","block":17641880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17610905","block":17651875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17610905","block":17651876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17610905","block":17651877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17610905","block":17651879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17610905","block":17651880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17610905","block":17661875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17610905","block":17661876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17610905","block":17661877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17610905","block":17661879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17610905","block":17661880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17610905","block":17671875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17610905","block":17671876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17610905","block":17671877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17610905","block":17671879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17610905","block":17671880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17610905","block":17681875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17610905","block":17681876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17610905","block":17681877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17610905","block":17681879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17610905","block":17681880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17610905","block":17691875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17610905","block":17691876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17610905","block":17691877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17610905","block":17691879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17610905","block":17691880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17610905","block":17701875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17610905","block":17701876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17610905","block":17701877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17610905","block":17701879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17610905","block":17701880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17711875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17711876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17711877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17711879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17711880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17721875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17721876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17721877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17721879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17721880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17731875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17731876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17731877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17731879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17731880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17741875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17741876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17741877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17741879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17741880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17751875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17751876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17751877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17751879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17751880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17761875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17761876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17761877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17761879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17761880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17771875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17771876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17771877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17771879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17771880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17781875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17781876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17781877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17781879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17781880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17791875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17791876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17791877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17791879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17791880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17801875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17801876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17801877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17801879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17801880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17811875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17811876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17811877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17811879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17811880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17821875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17821876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17821877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17821879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17821880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17831875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17831876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17831877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17831879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17831880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17841875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17841876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17841877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17841879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17841880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17851875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17851876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17851877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17851879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17851880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17861875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17861876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17861877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17861879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17861880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17705151","block":17871875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17705151","block":17871876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17705151","block":17871877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17705151","block":17871879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17705151","block":17871880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17881875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17881876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17881877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17881879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17881880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17891875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17891876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17891877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17891879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17891880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17901875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17901876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17901877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17901879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17901880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17911875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17911876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17911877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17911879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17911880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17921875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17921876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17921877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17921879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17921880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17931875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17931876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17931877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17931879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17931880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17941875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17941876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17941877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17941879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17941880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17951875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17951876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17951877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17951879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17951880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17961875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17961876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17961877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17961879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17961880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17971875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17971876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17971877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17971879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17971880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17981875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17981876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17981877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17981879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17981880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"},{"address":"0x89eae71b865a2a39cba62060ab1b40bbffae5b0d","bondId":1,"currentNumberOfShares":"1301000000000000000","currentLpRewardDebt":"0","lastRewardBlock":"17879603","block":17991875,"bondExpirationBlock":21124941,"numberOfSharesToCompensate":"3037709911985672143"},{"address":"0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d","bondId":2,"currentNumberOfShares":"74603879373206500005186","currentLpRewardDebt":"546788147273317449739592","lastRewardBlock":"17879603","block":17991876,"bondExpirationBlock":22618922,"numberOfSharesToCompensate":"223798109540617080091011"},{"address":"0x7c76f4db70b7e2177de10de3e2f668dadcd11108","bondId":3,"currentNumberOfShares":"44739174270101943975392","currentLpRewardDebt":"365897974267256904745869","lastRewardBlock":"17879603","block":17991877,"bondExpirationBlock":22624203,"numberOfSharesToCompensate":"134209409861506101262213"},{"address":"0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6","bondId":5,"currentNumberOfShares":"9351040526163838324896","currentLpRewardDebt":"14452290053249093455212","lastRewardBlock":"17879603","block":17991879,"bondExpirationBlock":22647574,"numberOfSharesToCompensate":"28051425871893200037985"},{"address":"0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2","bondId":6,"currentNumberOfShares":"8991650309086743220575","currentLpRewardDebt":"31244105689425156446200","lastRewardBlock":"17879603","block":17991880,"bondExpirationBlock":22676978,"numberOfSharesToCompensate":"26973320392057628638757"}] \ No newline at end of file diff --git a/bonding_transactions.json b/bonding_transactions.json index 0794543..6323883 100644 --- a/bonding_transactions.json +++ b/bonding_transactions.json @@ -1,1502 +1,640 @@ [ { - "blockNumber": "12609643", - "timeStamp": "1623365993", - "hash": "0xe55c5fb556924c7a532e6aa373a5d8e5196ff61843d5b3d70c57c5949cb5d5f0", - "nonce": "5", - "blockHash": "0x3695a3fb1f4903bfdd1b73fe896d594bb2cf16472befa3bce81190e820835fb0", - "transactionIndex": "158", - "from": "0x89eae71b865a2a39cba62060ab1b40bbffae5b0d", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "412890", - "gasPrice": "13000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000000000186cc6acd4b00000000000000000000000000000000000000000000000000000000000000000001", - "contractAddress": "", - "cumulativeGasUsed": "8992980", - "gasUsed": "395250", - "confirmations": "254314" - }, - { - "blockNumber": "12609818", - "timeStamp": "1623368534", - "hash": "0x64f7815acd7eb1df55961d368881d439641ea022d5dd915e9bec40ecb06f6264", - "nonce": "9", - "blockHash": "0x45872316c999a3d3d0dc1eac86464603fa10e59099b3a822e54aab197ffe7edd", - "transactionIndex": "28", - "from": "0x89eae71b865a2a39cba62060ab1b40bbffae5b0d", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "294224", - "gasPrice": "15000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000d0", - "contractAddress": "", - "cumulativeGasUsed": "1861774", - "gasUsed": "277686", - "confirmations": "254139" - }, - { - "blockNumber": "12610005", - "timeStamp": "1623370868", - "hash": "0xc252a404520ad6006c251634ea45cb6f5bfc6b33c10e663916837b10ad25e6b8", - "nonce": "193", - "blockHash": "0x5a5ce4586db4fbb6f4dc967cfce4040f8a87021893ae85da5ee2aa00a81d20e4", - "transactionIndex": "125", - "from": "0xa1c7bd2e48f7f3922e201705f3491c841135f483", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "496057", - "gasPrice": "12000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000015af1d78b58c4000000000000000000000000000000000000000000000000000000000000000000001", - "contractAddress": "", - "cumulativeGasUsed": "14567185", - "gasUsed": "328827", - "confirmations": "253952" - }, - { - "blockNumber": "12610081", - "timeStamp": "1623371919", - "hash": "0x8843a973b6dd1df66975c2920f57cca7d2baecef4af9056e3630b04fef2dbcd8", - "nonce": "195", - "blockHash": "0x4d2516eac98b2a571aa946ac4f8b300207e0fd7393e78486bd6a9dcb65f6d51f", - "transactionIndex": "98", - "from": "0xa1c7bd2e48f7f3922e201705f3491c841135f483", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "441496", - "gasPrice": "11000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000000008ac7230489e8000000000000000000000000000000000000000000000000000000000000000000c8", - "contractAddress": "", - "cumulativeGasUsed": "13484226", - "gasUsed": "277793", - "confirmations": "253876" - }, - { - "blockNumber": "12612533", - "timeStamp": "1623404650", - "hash": "0x76d021b3da273e1e39a54682aa6ab351f2530bae41897f2083ed37fd95d1c9f9", - "nonce": "12", - "blockHash": "0x32702a2b2ff90e10ccceed0a434783386a38d9332c6b70545a51b1d3aaeeb145", - "transactionIndex": "179", - "from": "0x89eae71b865a2a39cba62060ab1b40bbffae5b0d", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "296702", - "gasPrice": "12000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000000016345785d8a000000000000000000000000000000000000000000000000000000000000000000d0", - "contractAddress": "", - "cumulativeGasUsed": "13263233", - "gasUsed": "280164", - "confirmations": "251424" - }, - { - "blockNumber": "12612777", - "timeStamp": "1623407986", - "hash": "0x490fde0b8152af1f87f32dab9e554e2ad84c5587a8fcd6cdc532620f7189cd8a", - "nonce": "166", - "blockHash": "0x609a550a901dd419421f25f5dfae35c7a4610ab43cc012c9b4dbad85c191dc62", - "transactionIndex": "142", - "from": "0xefc0e701a824943b469a694ac564aa1eff7ab7dd", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "330553", - "gasPrice": "12000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000000000000000000000000000000000000000000d0", - "contractAddress": "", - "cumulativeGasUsed": "8594115", - "gasUsed": "328675", - "confirmations": "251180" - }, - { - "blockNumber": "12612789", - "timeStamp": "1623408166", - "hash": "0x9ec5c40661ef745c19b3eeda5d13a29b822cd72862bbc5fc0a13c8b747ecaf33", - "nonce": "167", - "blockHash": "0x3f9470570ca9584d4db5ec6711949aabdd91c881acb2742ba50460597455e7e6", - "transactionIndex": "54", - "from": "0xefc0e701a824943b469a694ac564aa1eff7ab7dd", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "246822", - "gasPrice": "18000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000001b0d04202f47ec000000000000000000000000000000000000000000000000000000000000000000d0", - "contractAddress": "", - "cumulativeGasUsed": "4974553", - "gasUsed": "245360", - "confirmations": "251168" - }, - { - "blockNumber": "12613535", - "timeStamp": "1623418468", - "hash": "0xb4cb1da2ed6e668479a90c1594dc0f51fa1f91e3244a1499f117db569f01e268", - "nonce": "14", - "blockHash": "0x2c5e5792f12e009c7e0d3d73f0e56e51dbb09628c8d616f9bfb0076b7a959acf", - "transactionIndex": "136", - "from": "0x89eae71b865a2a39cba62060ab1b40bbffae5b0d", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "299356", - "gasPrice": "20000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000000016345785d8a00000000000000000000000000000000000000000000000000000000000000000001", - "contractAddress": "", - "cumulativeGasUsed": "9607465", - "gasUsed": "282818", - "confirmations": "250422" - }, - { - "blockNumber": "12613598", - "timeStamp": "1623419136", - "hash": "0x5db9a192eb41bcd0a2cc9dfa363d6969865c173c681553428847c8572ffaf61a", - "nonce": "170", - "blockHash": "0xcc5943f9a45d7d969f7b1217378e4540ccfe2e0615f4bac7ab5b3dfffdc47b24", - "transactionIndex": "128", - "from": "0xefc0e701a824943b469a694ac564aa1eff7ab7dd", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "289469", - "gasPrice": "20000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000000a2a15d09519be000000000000000000000000000000000000000000000000000000000000000000001", - "contractAddress": "", - "cumulativeGasUsed": "6810706", - "gasUsed": "288007", - "confirmations": "250359" - }, - { - "blockNumber": "12613738", - "timeStamp": "1623420825", - "hash": "0x4eacdc029369e77720ee8bae2a77a42d5ff38b9020963505eaef1b39c39d478b", - "nonce": "16", - "blockHash": "0xf96b74c09a4a157be4ecee7f6e86ec8efe7783962282dab4ecfe961d59b06330", - "transactionIndex": "88", - "from": "0x89eae71b865a2a39cba62060ab1b40bbffae5b0d", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "315845", - "gasPrice": "20000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000000016345785d8a00000000000000000000000000000000000000000000000000000000000000000001", - "contractAddress": "", - "cumulativeGasUsed": "11286866", - "gasUsed": "299089", - "confirmations": "250219" - }, - { - "blockNumber": "12613879", - "timeStamp": "1623422759", - "hash": "0x82adf0f4235413323fe2ba12c1859dae3e92b8953b7b2a672643855bb2f9c110", - "nonce": "21", - "blockHash": "0x798f87b9ee3951bd4546055b9af26225c6647bd541760a8d603058b8db86cfd4", - "transactionIndex": "108", - "from": "0x89eae71b865a2a39cba62060ab1b40bbffae5b0d", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "418363", - "gasPrice": "24000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000000016345785d8a00000000000000000000000000000000000000000000000000000000000000000001", - "contractAddress": "", - "cumulativeGasUsed": "8019407", - "gasUsed": "316607", - "confirmations": "250078" - }, - { - "blockNumber": "12615580", - "timeStamp": "1623446087", - "hash": "0xab7b49a4d2da540bc6d320eeec5b72a223e16accffa1c1b275448dcde1ddfe60", - "nonce": "22", - "blockHash": "0xf440a2be2c2bb9d024ffb2f05afd26043c0e3fc05f8293f9ed3bffb2990c9b5b", - "transactionIndex": "168", - "from": "0x89eae71b865a2a39cba62060ab1b40bbffae5b0d", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "320896", - "gasPrice": "20000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000000000038d7ea4c680000000000000000000000000000000000000000000000000000000000000000001", - "contractAddress": "", - "cumulativeGasUsed": "14136143", - "gasUsed": "319139", - "confirmations": "248377" - }, - { - "blockNumber": "12648052", - "timeStamp": "1623880970", - "hash": "0xe6dda30a2aee902abed126138366c03d895067d4b92c7337639cede02a9c3bcc", - "nonce": "2988", - "blockHash": "0x9b1583bac0de18123b47c3a10183264f2c5301ba3a6218edfde71c4f4bd1d24c", - "transactionIndex": "116", - "from": "0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "344506", - "gasPrice": "20000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000001faebc1969c256d50a000000000000000000000000000000000000000000000000000000000000000d0", - "contractAddress": "", - "cumulativeGasUsed": "8018289", - "gasUsed": "312410", - "confirmations": "215905" - }, - { - "blockNumber": "12648076", - "timeStamp": "1623881303", - "hash": "0x8fd97806a2afdd6a8298b9b60647768c3fabd27274d68abfca5f087421dd3a22", - "nonce": "332", - "blockHash": "0x207fdfc7635fe81b07d78f45e8d27a092ba4d5b0ac0d3aa170225fd250be39ce", - "transactionIndex": "116", - "from": "0x7c76f4db70b7e2177de10de3e2f668dadcd11108", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "544656", - "gasPrice": "15000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000097950c4685a7a837de000000000000000000000000000000000000000000000000000000000000000d0", - "contractAddress": "", - "cumulativeGasUsed": "12178761", - "gasUsed": "312559", - "confirmations": "215881" - }, - { - "blockNumber": "12648109", - "timeStamp": "1623881812", - "hash": "0x6c3926298928802bbaa436727704adce05d43df04f6ebac7deec032a2d53bc40", - "nonce": "2134", - "blockHash": "0xe58e2b3b3675743dc4b1b3f6ff9c37c4faf63d38c829e3d6a94e6adc50da8e49", - "transactionIndex": "52", - "from": "0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "3445650", - "gasPrice": "22000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000fcc48cebda34f9f400f00000000000000000000000000000000000000000000000000000000000000d0", - "contractAddress": "", - "cumulativeGasUsed": "5462415", - "gasUsed": "312469", - "confirmations": "215848" - }, - { - "blockNumber": "12648143", - "timeStamp": "1623882206", - "hash": "0x1765faf6ac6544e4e9ae84a477ca93ef4d23d47a6d04a0288662ec87c2a1b82e", - "nonce": "82", - "blockHash": "0x9845a0fdc63a4a360d95af7da1296c23ec5995be64ac09f835699bc02540d4c5", - "transactionIndex": "64", - "from": "0xf6501068a54f3eab46c1f145cb9d3fb91658b220", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "362078", - "gasPrice": "14000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000002180790db2176800000000000000000000000000000000000000000000000000000000000000000001", - "contractAddress": "", - "cumulativeGasUsed": "5906398", - "gasUsed": "344710", - "confirmations": "215814" - }, - { - "blockNumber": "12648183", - "timeStamp": "1623882770", - "hash": "0x6c63c859887027cbb482b8da306d93b9e1f26b5561a3e97e529b20adaaa57d22", - "nonce": "85", - "blockHash": "0x9e097dcb94b18051bd6a894bb24440d959d6bbbf87b1d595098b4917e20c6363", - "transactionIndex": "148", - "from": "0xf6501068a54f3eab46c1f145cb9d3fb91658b220", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "325668", - "gasPrice": "13000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000000145216b8f5a72d000000000000000000000000000000000000000000000000000000000000000000d0", - "contractAddress": "", - "cumulativeGasUsed": "14608551", - "gasUsed": "294868", - "confirmations": "215774" - }, - { - "blockNumber": "12648203", - "timeStamp": "1623882949", - "hash": "0x0bab8aaa177370cacb8ab917e491fe281b0c8051a45c64c8ffc3c2dca332127d", - "nonce": "27", - "blockHash": "0x2d250fefd41bc9f1dbf99a7490f9221c52b65a9a22a36f90bdef578f7330ddb2", - "transactionIndex": "125", - "from": "0x10693e86f2e7151b3010469e33b6c1c2da8887d6", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "330626", - "gasPrice": "11000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000065d7d85462acd3da8f00000000000000000000000000000000000000000000000000000000000000d0", - "contractAddress": "", - "cumulativeGasUsed": "11268701", - "gasUsed": "298748", - "confirmations": "215754" - }, - { - "blockNumber": "12648269", - "timeStamp": "1623883891", - "hash": "0x488ac5bfd14048e145c02478f9253546b886292c4620ba01e06844735099655e", - "nonce": "375", - "blockHash": "0x4ecb5f0a013e78d0edf04cbb8ca13c2ef87fc4ba0f67df5280ab9af32f82ed2a", - "transactionIndex": "35", - "from": "0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "330601", - "gasPrice": "17000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000002c974700747dfa2f3d00000000000000000000000000000000000000000000000000000000000000d0", - "contractAddress": "", - "cumulativeGasUsed": "1541094", - "gasUsed": "298723", - "confirmations": "215688" - }, - { - "blockNumber": "12648554", - "timeStamp": "1623887473", - "hash": "0xc0e95d6470071bbb17c62f9653f9e84d5efede936e4a33d15e4e19ee08e243f4", - "nonce": "381", - "blockHash": "0x9632c45d43bec1c7d3dbbd12bca8a520df9250547b10fed15f8a8eafb88011fe", - "transactionIndex": "78", - "from": "0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "308351", - "gasPrice": "16000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000000a519ab3007b87f78c600000000000000000000000000000000000000000000000000000000000000d0", - "contractAddress": "", - "cumulativeGasUsed": "6770547", - "gasUsed": "276594", - "confirmations": "215403" - }, - { - "blockNumber": "12648708", - "timeStamp": "1623889843", - "hash": "0x280c0047a81a0fdc65004c8671320f4af0ff53aabafc07eb36f3ab45866e631e", - "nonce": "223", - "blockHash": "0xf134bdeb4aa37cce23c293ccfd9c58bde1e4ae139dc5aa3c69fb9909384316f4", - "transactionIndex": "54", - "from": "0xa1c7bd2e48f7f3922e201705f3491c841135f483", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "328208", - "gasPrice": "20000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000000987056dd62ae70000000000000000000000000000000000000000000000000000000000000000000d0", - "contractAddress": "", - "cumulativeGasUsed": "7249289", - "gasUsed": "311180", - "confirmations": "215249" - }, - { - "blockNumber": "12648731", - "timeStamp": "1623890158", - "hash": "0x6d92f9568d04b625c43f43103e84f7d7cf4e8443dd585c4bac749b3d5fe7e5fb", - "nonce": "1940", - "blockHash": "0x96e7c14a81e823c003a7468fca0561ea43655e1e1bfa0647c073056c0cfe51f2", - "transactionIndex": "52", - "from": "0xd028babbdc15949aaa35587f95f9e96c7d49417d", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "330771", - "gasPrice": "18000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000003c3aee0b89d2b5def30000000000000000000000000000000000000000000000000000000000000004", - "contractAddress": "", - "cumulativeGasUsed": "6585999", - "gasUsed": "298893", - "confirmations": "215226" - }, - { - "blockNumber": "12648777", - "timeStamp": "1623890825", - "hash": "0x5bf7f1fd31f6158e23d4f53f5d6734acadaf2f7d31c91d6f7ca49fc326ee00b3", - "nonce": "3643", - "blockHash": "0xd1f2b64312094767f82fd192c28f1154185dae6b9df5a4c06b56670f3367b0dc", - "transactionIndex": "246", - "from": "0x9968efe1424d802e1f79fd8af8da67b0f08c814d", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "344748", - "gasPrice": "21000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000000f1ba9428d88d218f070000000000000000000000000000000000000000000000000000000000000001", - "contractAddress": "", - "cumulativeGasUsed": "9955005", - "gasUsed": "312652", - "confirmations": "215180" - }, - { - "blockNumber": "12648857", - "timeStamp": "1623891553", - "hash": "0x7716559ced4ac44a54abbcb7943203fa23f9d339a39777925dfe037bbfa69d0c", - "nonce": "385", - "blockHash": "0x8cfd3bccdfc73e201fcc201938c4cb8234a6f6e5264bbf2c03e93430df7a2f8a", - "transactionIndex": "145", - "from": "0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "296907", - "gasPrice": "15000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000115bf44dbd2f82c295c00000000000000000000000000000000000000000000000000000000000000d0", - "contractAddress": "", - "cumulativeGasUsed": "10117295", - "gasUsed": "265369", - "confirmations": "215100" - }, - { - "blockNumber": "12649258", - "timeStamp": "1623896816", - "hash": "0xeb24c5e15cab0db81b0c2b1459f3d6f7c8f3c144a609dbf75073c09159d68158", - "nonce": "318", - "blockHash": "0x628e04418936a0445880b4ad6be1477e822b7ac50ae1196166d9ea08d50beaf2", - "transactionIndex": "61", - "from": "0xd9c3415bf8600f007a1b4199df967c25a3e00eea", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "459872", - "gasPrice": "21000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000096f7329f1850c215a70000000000000000000000000000000000000000000000000000000000000001", - "contractAddress": "", - "cumulativeGasUsed": "5151740", - "gasUsed": "427807", - "confirmations": "214699" - }, - { - "blockNumber": "12649481", - "timeStamp": "1623900136", - "hash": "0x19d93e9c5acd9ccb70b7ccee92ffbc42f1de6a246a0e33fadc4007099d0f8efd", - "nonce": "5", - "blockHash": "0x3795693dc4164af257914c86dec1d4a67f02ecfd399d059fe21d61de94eda07a", - "transactionIndex": "141", - "from": "0xd3bc13258e685df436715104882888d087f87ed8", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "344671", - "gasPrice": "20000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000010f0cf064dd5920000000000000000000000000000000000000000000000000000000000000000000d0", - "contractAddress": "", - "cumulativeGasUsed": "10763578", - "gasUsed": "327575", - "confirmations": "214476" - }, - { - "blockNumber": "12650463", - "timeStamp": "1623912972", - "hash": "0x2621cae89061cf2012c49d1678d397457ea3c9afb205697ad0745cb2b132d7a4", - "nonce": "1585", - "blockHash": "0xeea91572e5cabceb1fee4bdc05507b10c764fea2484dd2302309cd5cd92a18e3", - "transactionIndex": "74", - "from": "0x0709b103d46d71458a71e5d81230dd688809a53d", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "456943", - "gasPrice": "22000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000082a1e88793a5906168000000000000000000000000000000000000000000000000000000000000000d0", - "contractAddress": "", - "cumulativeGasUsed": "4348881", - "gasUsed": "439878", - "confirmations": "213494" - }, - { - "blockNumber": "12650480", - "timeStamp": "1623913198", - "hash": "0xa2d53aa8f1fccedcb5e28fdef4b8753da5c0b12b919885e94c3124a2a82c679a", - "nonce": "4227", - "blockHash": "0x5c6d6bcd935862d015687b29c16e2f446576318c16fe16fe55521ad547a29288", - "transactionIndex": "143", - "from": "0xe3e39161d35e9a81edec667a5387bfae85752854", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "459228", - "gasPrice": "14000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000140e1e7ae7eba1b740b00000000000000000000000000000000000000000000000000000000000000d0", - "contractAddress": "", - "cumulativeGasUsed": "8674209", - "gasUsed": "427163", - "confirmations": "213477" - }, - { - "blockNumber": "12650886", - "timeStamp": "1623918544", - "hash": "0xe427f27b999a79f57009b913925f1e1f33ba1cdf5909904c95d8ae019bc625a7", - "nonce": "287", - "blockHash": "0x47659f6a6e28a8c598f202603c5168b50111da005a71188c3f27a325575a9f85", - "transactionIndex": "247", - "from": "0x7c361828849293684ddf7212fd1d2cb5f0aade70", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "344731", - "gasPrice": "15000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000028a857425466f800000000000000000000000000000000000000000000000000000000000000000001", - "contractAddress": "", - "cumulativeGasUsed": "12267168", - "gasUsed": "327634", - "confirmations": "213071" - }, - { - "blockNumber": "12650915", - "timeStamp": "1623918933", - "hash": "0x7c254086b3e4a34ec36cafc003145031baa1fff0de19697cc8aec889380a7878", - "nonce": "1969", - "blockHash": "0xfe6d02cb90bcd5ce2276800748f1da340c96cfa85a73bbe8f4fc58dc0126740b", - "transactionIndex": "190", - "from": "0x9d3f4eeb533b8e3c8f50dbbd2e351d1bf2987908", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "344742", - "gasPrice": "20000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000022905914c52531970b8000000000000000000000000000000000000000000000000000000000000000c", - "contractAddress": "", - "cumulativeGasUsed": "7724838", - "gasUsed": "327645", - "confirmations": "213042" - }, - { - "blockNumber": "12650938", - "timeStamp": "1623919211", - "hash": "0xd0367ff29296ddf2342b96524b77172b5708c2f490763f1c1bd5ca3c8e149f28", - "nonce": "291", - "blockHash": "0xc6608594183210b04a75b126feb5391879b64e9e8442cceba9852734a87cadff", - "transactionIndex": "171", - "from": "0x7c361828849293684ddf7212fd1d2cb5f0aade70", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "1011692", - "gasPrice": "15000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000028a857425466f8000000000000000000000000000000000000000000000000000000000000000000d0", - "contractAddress": "", - "cumulativeGasUsed": "9954463", - "gasUsed": "294883", - "confirmations": "213019" - }, - { - "blockNumber": "12650997", - "timeStamp": "1623919983", - "hash": "0xaa87df99351fd0ada1d385ac98d69bebeecc454caf8a1c45f3ad76803e44c846", - "nonce": "293", - "blockHash": "0xe3729a7ef4706f3538ed52072aa7b19e5c9eeb1d87603b8599c657e5e485ca03", - "transactionIndex": "196", - "from": "0x7c361828849293684ddf7212fd1d2cb5f0aade70", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "blockNumber": "13197161", + "timeStamp": "1631265839", + "hash": "0xdafacfda5509a94bf436398f072a59bf0f500f4d72d08b34b930b15215d669c8", + "nonce": "6247", + "blockHash": "0xd1bd53fa693cafefa4889ea7553530f9292859320af673b255a5bc3154caa32e", + "transactionIndex": "212", + "from": "0x0b54b916e90b8f28ad21da40638e0724132c9c93", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "310756", - "gasPrice": "15000000000", + "gas": "423444", + "gasPrice": "140445792983", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000003c03823e6f88a95ac00000000000000000000000000000000000000000000000000000000000000d0", + "input": "0x9d7de6b30000000000000000000000000000000000000000000000c6a036eb4bc74000000000000000000000000000000000000000000000000000000000000000000016", "contractAddress": "", - "cumulativeGasUsed": "13309028", - "gasUsed": "279000", - "confirmations": "212960" + "cumulativeGasUsed": "13960405", + "gasUsed": "269896", + "confirmations": "6160179", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12651071", - "timeStamp": "1623921113", - "hash": "0xf092fce8fc087bf466b7ee3e10ba5e22416f2492cdb94601f9fad0a7c54b2c77", - "nonce": "95", - "blockHash": "0xc4802961192b3a688c0e7da6b606c7211b484b859fbd89fd028a88e33fc5bcc5", + "blockNumber": "13267254", + "timeStamp": "1632202689", + "hash": "0x80b05192516502cb68a0d5830d803fd008dc25088078f3cb2ff61041a30e8008", + "nonce": "2168", + "blockHash": "0xbfdcafb054028927235afc52fe376254d43943689b349401c486ab2f1222d410", "transactionIndex": "84", - "from": "0x865dc9a621b50534ba3d17e0ea8447c315e31886", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "330757", - "gasPrice": "14000001459", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000000bc37ade48e3c400000000000000000000000000000000000000000000000000000000000000000010", - "contractAddress": "", - "cumulativeGasUsed": "7726085", - "gasUsed": "313879", - "confirmations": "212886" - }, - { - "blockNumber": "12651102", - "timeStamp": "1623921453", - "hash": "0x00d7a16226be32a43b1db71bc20f87b8c61e0368b6f76dcad472bc5c00a7b062", - "nonce": "1844", - "blockHash": "0x19d7704764ffdc1e1c6447aed62422bc3b11219eb64bf6e2fda286e6013ac775", - "transactionIndex": "117", "from": "0x324e0b53cefa84cf970833939249880f814557c6", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "445303", - "gasPrice": "21000000000", + "gas": "450903", + "gasPrice": "38796873243", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000077bf18ff4e3271eea50000000000000000000000000000000000000000000000000000000000000001", + "input": "0x9d7de6b30000000000000000000000000000000000000000000001103208f6d5d33597450000000000000000000000000000000000000000000000000000000000000009", "contractAddress": "", - "cumulativeGasUsed": "6431382", - "gasUsed": "413457", - "confirmations": "212855" + "cumulativeGasUsed": "7746517", + "gasUsed": "288202", + "confirmations": "6090086", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12651358", - "timeStamp": "1623924871", - "hash": "0x60ed2e6ad3a05ceaa097b6af8e4186fdcbed2b5ac252b25f9465cc481634f0bd", - "nonce": "731", - "blockHash": "0xf7753a41f564bb261c26384a59bc69aa37aa5079a08e1fa8838871293b2a86ac", - "transactionIndex": "130", - "from": "0xce156d5d62a8f82326da8d808d0f3f76360036d0", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "459253", - "gasPrice": "15000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000002940ff1c0c984400000000000000000000000000000000000000000000000000000000000000000001", - "contractAddress": "", - "cumulativeGasUsed": "6950712", - "gasUsed": "442188", - "confirmations": "212599" - }, - { - "blockNumber": "12651401", - "timeStamp": "1623925578", - "hash": "0xfd955e9756456fbab10e18380176c87c75417f48e9b2372c4b19e3b56677c829", - "nonce": "102", - "blockHash": "0x05315030ab2f712c93a1a3551d2faccd4d26e988b6910f165fa8182acc6d42b2", - "transactionIndex": "73", - "from": "0x865dc9a621b50534ba3d17e0ea8447c315e31886", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "311674", - "gasPrice": "11000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000019a7740c7995b03566000000000000000000000000000000000000000000000000000000000000001e", - "contractAddress": "", - "cumulativeGasUsed": "14216017", - "gasUsed": "279865", - "confirmations": "212556" - }, - { - "blockNumber": "12651562", - "timeStamp": "1623927699", - "hash": "0x951e32055cd62ba2ccc5456852d7e02e85117b050babc6c0cce41c86698604bc", - "nonce": "1028", - "blockHash": "0x977208ffa11183f72318b091e98e9959e6b183ad5ca72037742bd46d6b422c54", - "transactionIndex": "178", + "blockNumber": "13269046", + "timeStamp": "1632226231", + "hash": "0x3099ea9760f60189ebdcb729a97366c70d2a724f7ce3a98014397c82ed18393c", + "nonce": "1385", + "blockHash": "0x9dc927bedd7a72440a1e079d8edebcf534049f383fc9ea526b3f56f8ff0cb2bd", + "transactionIndex": "125", "from": "0x26bdde6506bd32bd7b5cc5c73cd252807ff18568", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "344710", - "gasPrice": "20000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000002bf10563bd0b79f6fbc000000000000000000000000000000000000000000000000000000000000000a", - "contractAddress": "", - "cumulativeGasUsed": "7084300", - "gasUsed": "312613", - "confirmations": "212395" - }, - { - "blockNumber": "12651584", - "timeStamp": "1623928067", - "hash": "0x90c038755def7e688084a6cd2315d1dc6677187f9beef09b82d15f718b518328", - "nonce": "411", - "blockHash": "0xa4333160269b45db2688576d2d8821288dd2ff84c256b221315239d6315b776d", - "transactionIndex": "52", - "from": "0xd6efc21d8c941aa06f90075de1588ac7e912fec6", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "344643", - "gasPrice": "11000000000", + "gas": "644371", + "gasPrice": "47706285572", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000001bfda33daf4c46aaff3000000000000000000000000000000000000000000000000000000000000000b", + "input": "0x9d7de6b30000000000000000000000000000000000000000000000215693e3c29de4f041000000000000000000000000000000000000000000000000000000000000001e", "contractAddress": "", - "cumulativeGasUsed": "5943551", - "gasUsed": "312547", - "confirmations": "212373" + "cumulativeGasUsed": "13496144", + "gasUsed": "426781", + "confirmations": "6088294", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12651677", - "timeStamp": "1623928969", - "hash": "0xbe408378a65237a57c3f17c4fa47b879e1ba106e0524f5cabffb157152697f8f", - "nonce": "1034", - "blockHash": "0x08301929240b6ef07cb5d46a9dbfb31c1fa2e98f7e4d941ccf97eeb32b948072", - "transactionIndex": "232", + "blockNumber": "13269050", + "timeStamp": "1632226274", + "hash": "0x66b8fb7902c40205b8ff7438a18f1049806115baf74c7a2174b8a5f0e427efa2", + "nonce": "1386", + "blockHash": "0xfd1daa86f2dd54fdc9fa785e58315e94195f7e55b0e1ed5a3b07b65b62104ced", + "transactionIndex": "40", "from": "0x26bdde6506bd32bd7b5cc5c73cd252807ff18568", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "426300", - "gasPrice": "15000000000", + "gas": "423475", + "gasPrice": "47924335960", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000007aa9255af4de6bc68c10000000000000000000000000000000000000000000000000000000000000001", + "input": "0x9d7de6b3000000000000000000000000000000000000000000000006aaea60c085fa9673000000000000000000000000000000000000000000000000000000000000001e", "contractAddress": "", - "cumulativeGasUsed": "7323250", - "gasUsed": "394522", - "confirmations": "212280" + "cumulativeGasUsed": "3316590", + "gasUsed": "279517", + "confirmations": "6088290", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12651914", - "timeStamp": "1623932272", - "hash": "0x07c10029d55219c70753fb808a9bd408c2c1955a0b602583e12f6cdfdee79fcf", - "nonce": "419", - "blockHash": "0xbbf1b2276d767f8ad49759aab649531050f4ed665efb72e9c90b76c3741e1071", - "transactionIndex": "86", - "from": "0xd6efc21d8c941aa06f90075de1588ac7e912fec6", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "425695", - "gasPrice": "26000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000038e6554208eb38997710000000000000000000000000000000000000000000000000000000000000001", - "contractAddress": "", - "cumulativeGasUsed": "6143105", - "gasUsed": "276611", - "confirmations": "212043" - }, - { - "blockNumber": "12652036", - "timeStamp": "1623933920", - "hash": "0x71ea81d592f24c79eae6ab8900c88544df93605461893a848b576303fe66f33d", - "nonce": "9", - "blockHash": "0xb538e36d6915a3eb73a555e7aa3f8c53c4ecceacff83de77a7dc960ed2f28ac4", - "transactionIndex": "86", - "from": "0xd3bc13258e685df436715104882888d087f87ed8", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "311740", - "gasPrice": "20500000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000038a8e3ed9bfa96c0000000000000000000000000000000000000000000000000000000000000000001a", - "contractAddress": "", - "cumulativeGasUsed": "6007301", - "gasUsed": "294931", - "confirmations": "211921" - }, - { - "blockNumber": "12652833", - "timeStamp": "1623945112", - "hash": "0xb021e362e7b2e8526af58b2d87a98141b12a15b57cfa5fd0e87c258a501730eb", - "nonce": "295", - "blockHash": "0x73691c51f301f176ba0ae85e3aa1571e2004263a30432982d3137775cd1593b4", - "transactionIndex": "4", - "from": "0xe0d62cc9233c7e2f1f23fe8c77d6b4d1a265d7cd", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "516886", - "gasPrice": "50000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000000000000000000006220000000000000000000000000000000000000000000000000000000000000003", - "contractAddress": "", - "cumulativeGasUsed": "739284", - "gasUsed": "342494", - "confirmations": "211124" - }, - { - "blockNumber": "12652836", - "timeStamp": "1623945177", - "hash": "0xf234d6725671c59a5a8b1cedfa4b9ee996e8cf16c05c49e97b2fbb7fdef11180", - "nonce": "296", - "blockHash": "0x1482fc8c234e29d7d37ef231a5e5f6ec138d65b854bb23f064758d7e8991e3de", - "transactionIndex": "17", - "from": "0xe0d62cc9233c7e2f1f23fe8c77d6b4d1a265d7cd", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "373558", - "gasPrice": "50000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000000528fdeeeccd7ec00000000000000000000000000000000000000000000000000000000000000000003", - "contractAddress": "", - "cumulativeGasUsed": "1844089", - "gasUsed": "247546", - "confirmations": "211121" - }, - { - "blockNumber": "12652854", - "timeStamp": "1623945411", - "hash": "0x0e376dfde93a0bf9c26eac471f336e57261237d3a2d5e4efe871c2b938f976d2", - "nonce": "297", - "blockHash": "0x2d94a1f9dea529898789993666e90432b61a310b19a4a4c2759fe20b33af34a0", - "transactionIndex": "64", - "from": "0xe0d62cc9233c7e2f1f23fe8c77d6b4d1a265d7cd", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "467617", - "gasPrice": "50000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000000006f05b59d3b200000000000000000000000000000000000000000000000000000000000000000064", - "contractAddress": "", - "cumulativeGasUsed": "4775863", - "gasUsed": "309936", - "confirmations": "211103" - }, - { - "blockNumber": "12652858", - "timeStamp": "1623945556", - "hash": "0xcab0d0ab8e8755898e357bb1d3258ee4b9c8ba0089ddf617ea7b53d7c5568da9", - "nonce": "298", - "blockHash": "0x279f4b6091066bfcfd6e103caeed12e11838973ce34acee332816e5f251cfce8", - "transactionIndex": "64", - "from": "0xe0d62cc9233c7e2f1f23fe8c77d6b4d1a265d7cd", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "381643", - "gasPrice": "50000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000000004563918244f400000000000000000000000000000000000000000000000000000000000000000064", - "contractAddress": "", - "cumulativeGasUsed": "5233946", - "gasUsed": "252891", - "confirmations": "211099" - }, - { - "blockNumber": "12652866", - "timeStamp": "1623945700", - "hash": "0x6a18e7d7f2bf145ccf8194afbcc77ee8d992cc9207162b6e78da227c8a30d199", - "nonce": "299", - "blockHash": "0x2bb844fbada15920fa40268da24ac2bf980e5827c965b817d8be3e66988f4a0f", - "transactionIndex": "33", - "from": "0xe0d62cc9233c7e2f1f23fe8c77d6b4d1a265d7cd", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "blockNumber": "13269074", + "timeStamp": "1632226687", + "hash": "0x3b0dcf94cf4ed03ebfbf766bab9e39292c123068fbd8c914554c799861118c70", + "nonce": "1387", + "blockHash": "0xca893fcf7c8d94a73c0d9a59cbbcea1996143200fb967e64205d4c29ad102046", + "transactionIndex": "311", + "from": "0x26bdde6506bd32bd7b5cc5c73cd252807ff18568", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "381624", - "gasPrice": "50000000000", + "gas": "423553", + "gasPrice": "54766543573", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000000003782dace9d9000000000000000000000000000000000000000000000000000000000000000000064", + "input": "0x9d7de6b3000000000000000000000000000000000000000000000a41a12da69b784fb300000000000000000000000000000000000000000000000000000000000000001e", "contractAddress": "", - "cumulativeGasUsed": "3655624", - "gasUsed": "252878", - "confirmations": "211091" + "cumulativeGasUsed": "27964641", + "gasUsed": "279569", + "confirmations": "6088266", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12652878", - "timeStamp": "1623945838", - "hash": "0x3f7d49ecb3da9431512da3ee3553b0049ac476af7188080cff2f997fbed3294a", - "nonce": "300", - "blockHash": "0x1ce2695642a29f54358d7c362761316800960b7af24f3c7c2978fae12b8bbaf1", - "transactionIndex": "94", - "from": "0xe0d62cc9233c7e2f1f23fe8c77d6b4d1a265d7cd", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "blockNumber": "13346807", + "timeStamp": "1633272029", + "hash": "0x6c62fde8a5bc9a86785206c4be0822d55f60dfe85f11b94026d1fb68eed9ec71", + "nonce": "51", + "blockHash": "0x9c00d4e1aae96c251d1f4a4956a1e18433a9281cb9d3e2b7745e32f8cc8026d6", + "transactionIndex": "282", + "from": "0xc1b6052e707dff9017deab13ae9b89008fc1fc5d", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "381624", - "gasPrice": "50000000000", + "gas": "317679", + "gasPrice": "46654609644", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000000038e62046fb1a00000000000000000000000000000000000000000000000000000000000000000064", + "input": "0x9d7de6b30000000000000000000000000000000000000000000000c862e9c7a8dc4a0f820000000000000000000000000000000000000000000000000000000000000018", "contractAddress": "", - "cumulativeGasUsed": "9798024", - "gasUsed": "252878", - "confirmations": "211079" + "cumulativeGasUsed": "17693584", + "gasUsed": "305279", + "confirmations": "6010533", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12652886", - "timeStamp": "1623946039", - "hash": "0xbc83bc7e864b816be8db826332bf584f5f34326f5995287faa2b1ab86f31d85f", - "nonce": "301", - "blockHash": "0xa196eaeb7410e19e128e6b65637ec03e872cf47776f1510c5eae7168ac723746", - "transactionIndex": "56", - "from": "0xe0d62cc9233c7e2f1f23fe8c77d6b4d1a265d7cd", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "blockNumber": "13362604", + "timeStamp": "1633485630", + "hash": "0x73096cc9d7c9daca32df8f7558daef9be5832412397a9aeb9ee31d2fd58376c7", + "nonce": "5018", + "blockHash": "0x38635d97ca98c584ce66ca403e3f2ffff03d55384c6f7e404b08fad223b6b6aa", + "transactionIndex": "213", + "from": "0x9968efe1424d802e1f79fd8af8da67b0f08c814d", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "381553", - "gasPrice": "50000000000", + "gas": "299415", + "gasPrice": "91740836154", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000001158e460913d000000000000000000000000000000000000000000000000000000000000000000064", + "input": "0x9d7de6b30000000000000000000000000000000000000000000000f1ba9428d88d218f070000000000000000000000000000000000000000000000000000000000000008", "contractAddress": "", - "cumulativeGasUsed": "5550593", - "gasUsed": "252831", - "confirmations": "211071" + "cumulativeGasUsed": "18243223", + "gasUsed": "287015", + "confirmations": "5994736", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12652893", - "timeStamp": "1623946108", - "hash": "0xbc1b06a5fea357cb947ffe7a4c08353b75b1f3fcb237e047b4e8d7bdeb2a7588", - "nonce": "302", - "blockHash": "0xfb400fd68358cfc5b26b77e67adadff4c5d4cc860d6ce93cc714f222f1b72192", - "transactionIndex": "11", - "from": "0xe0d62cc9233c7e2f1f23fe8c77d6b4d1a265d7cd", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "blockNumber": "13378776", + "timeStamp": "1633703918", + "hash": "0xca396fcff552ce92c6b66228a8b8d284c97ba28fe0db1402c0595065f9c22d80", + "nonce": "755", + "blockHash": "0x3bee44d6a856c3038efa5fdd797c230e0192a7886b8aca711ad5e54200ca0d73", + "transactionIndex": "146", + "from": "0xce156d5d62a8f82326da8d808d0f3f76360036d0", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "578638", - "gasPrice": "50000000000", + "gas": "280572", + "gasPrice": "134000000000", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000000008ac7230489e800000000000000000000000000000000000000000000000000000000000000000064", + "input": "0x9d7de6b300000000000000000000000000000000000000000000002940ff1c0c98440000000000000000000000000000000000000000000000000000000000000000000f", "contractAddress": "", - "cumulativeGasUsed": "1059084", - "gasUsed": "384034", - "confirmations": "211064" + "cumulativeGasUsed": "18002338", + "gasUsed": "266651", + "confirmations": "5978564", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12652904", - "timeStamp": "1623946287", - "hash": "0xfe60a96bcdfd360dbf3d2a04e10626c14b650c6100d58ab688b076acde10b811", - "nonce": "3979", - "blockHash": "0xab5eaf199c7a027833c0b84dd762eac446915fff7447d0aade1602a910736dbf", - "transactionIndex": "139", - "from": "0x0b54b916e90b8f28ad21da40638e0724132c9c93", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "blockNumber": "13383651", + "timeStamp": "1633770596", + "hash": "0x27de0140929427e8e076d1069d70c43cef76bf240d53abd016bf55d0d11a1112", + "nonce": "376", + "blockHash": "0x54fbdcf1b3070ee7899cf6e23a775abca589a512644162632d7a000e263d1d3e", + "transactionIndex": "276", + "from": "0x0000ce08fa224696a819877070bf378e8b131acf", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "330746", - "gasPrice": "41800000000", + "gas": "296214", + "gasPrice": "72165548641", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000003d952abd36cbc00000000000000000000000000000000000000000000000000000000000000000004", + "input": "0x9d7de6b3000000000000000000000000000000000000000000000050438f7184966926130000000000000000000000000000000000000000000000000000000000000004", "contractAddress": "", - "cumulativeGasUsed": "9255580", - "gasUsed": "313868", - "confirmations": "211053" + "cumulativeGasUsed": "18193621", + "gasUsed": "283814", + "confirmations": "5973689", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12653293", - "timeStamp": "1623951234", - "hash": "0x3a39dcb9be596a0ff11b81a7ef4566a4380635a5ff3a5d565934638691c9c228", - "nonce": "3681", - "blockHash": "0xb4947897fe4856fedda1122794adfca65f6290f6573ba9144fd8ed3fbcbeaab7", - "transactionIndex": "127", - "from": "0x629cd43eaf443e66a9a69ed246728e1001289eac", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "blockNumber": "13475462", + "timeStamp": "1635014078", + "hash": "0x6df3d6c492aea529adda16f445ab95a4139bd9251100a2d5d6a90d188b201900", + "nonce": "2330", + "blockHash": "0xd217b40ea02a7249dd2fbcc694f458be68ebf83ebcc5f93536083e5b84f60bee", + "transactionIndex": "133", + "from": "0xd028babbdc15949aaa35587f95f9e96c7d49417d", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "459288", - "gasPrice": "33000000000", + "gas": "296169", + "gasPrice": "40516406339", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000027ae6dbc3702913df70000000000000000000000000000000000000000000000000000000000000001", + "input": "0x9d7de6b300000000000000000000000000000000000000000000003c3aee0b89d2b5def30000000000000000000000000000000000000000000000000000000000000017", "contractAddress": "", - "cumulativeGasUsed": "11502905", - "gasUsed": "427223", - "confirmations": "210664" + "cumulativeGasUsed": "10149541", + "gasUsed": "288569", + "confirmations": "5881878", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12653315", - "timeStamp": "1623951445", - "hash": "0x441eacd9daa61fc588c6551afa11c0585682f14f940c971313e1263443dcddec", - "nonce": "1849", - "blockHash": "0xb54062b6020d9db633df04f19e122e19c6dfc4aba6f8bd072886cad8297196e0", - "transactionIndex": "80", - "from": "0x324e0b53cefa84cf970833939249880f814557c6", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "blockNumber": "13752825", + "timeStamp": "1638800974", + "hash": "0x7eaddec94f91cb7cf85d5ca540eee7b7ecc5044f527355fc43ddb8d7b17d6a9c", + "nonce": "474", + "blockHash": "0x31372bfeb6977c2afacdd1cc789763ee2b7606b2073518398134e800be15d9f4", + "transactionIndex": "48", + "from": "0xc2cb4b1bcaebaa78c8004e394cf90ba07a61c8f7", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "311815", - "gasPrice": "33000000000", + "gas": "299455", + "gasPrice": "100624010960", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000009872eff787a0c3a8a00000000000000000000000000000000000000000000000000000000000000001", + "input": "0x9d7de6b300000000000000000000000000000000000000000000053b1b7e838a88939a670000000000000000000000000000000000000000000000000000000000000023", "contractAddress": "", - "cumulativeGasUsed": "7066084", - "gasUsed": "295006", - "confirmations": "210642" + "cumulativeGasUsed": "2812325", + "gasUsed": "291855", + "confirmations": "5604515", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12653322", - "timeStamp": "1623951495", - "hash": "0x8c84e477af07d1d8606e5adc676bd25089c9970bef83d92756d75cf59c8f88b3", - "nonce": "3986", - "blockHash": "0xf0218ebe703f759888ce0d543c8d67fdc3199c48534c461dee41cc4882fde9b8", - "transactionIndex": "206", - "from": "0x0b54b916e90b8f28ad21da40638e0724132c9c93", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "blockNumber": "13773046", + "timeStamp": "1639080394", + "hash": "0xae39e1530fa2d88a02c906fdf0d50dce948b726d4f5aae78f28d173e791b055e", + "nonce": "653", + "blockHash": "0xa92c5587a9b7fabd297ec8ecacfee3375ee56caa7e6311ac7783c1fd93d1f43c", + "transactionIndex": "176", + "from": "0xd6efc21d8c941aa06f90075de1588ac7e912fec6", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "311791", - "gasPrice": "28000000000", + "gas": "317725", + "gasPrice": "52821293416", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000000c2c6e43f785a8400000000000000000000000000000000000000000000000000000000000000000001", + "input": "0x9d7de6b300000000000000000000000000000000000000000000054e3f87fb8377f44764000000000000000000000000000000000000000000000000000000000000001f", "contractAddress": "", - "cumulativeGasUsed": "12721983", - "gasUsed": "294982", - "confirmations": "210635" + "cumulativeGasUsed": "13540889", + "gasUsed": "310125", + "confirmations": "5584294", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12653524", - "timeStamp": "1623954279", - "hash": "0x4b9940ef5f9f2e474fe386c82cf81699f6aca73a3e38bfaef1059a60f43c6abf", - "nonce": "3684", - "blockHash": "0x9f7261d03d21a9f0b046c93f43b95f2925fc87de02b33a48062284d47aff6d60", - "transactionIndex": "116", - "from": "0x629cd43eaf443e66a9a69ed246728e1001289eac", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "blockNumber": "13804645", + "timeStamp": "1639502950", + "hash": "0xc0e7e1e42803bfc114bf4a99e737666dc1150a56fdc6bc475acadfc4df63d3e6", + "nonce": "552", + "blockHash": "0xa46df7b84ae3b3a9b76bee65e49598b9d760c8a5d0b08f91a839727f214807e4", + "transactionIndex": "190", + "from": "0x94a2ffdbdbd84984ac7967878c5c397126e7bbbe", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "440175", - "gasPrice": "27000000000", + "gas": "317621", + "gasPrice": "64678106132", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000003f6fc14428477b94d800000000000000000000000000000000000000000000000000000000000000d0", + "input": "0x9d7de6b30000000000000000000000000000000000000000000001fc7dbd2c5e27fddd7a0000000000000000000000000000000000000000000000000000000000000015", "contractAddress": "", - "cumulativeGasUsed": "9537702", - "gasUsed": "408179", - "confirmations": "210433" + "cumulativeGasUsed": "17443534", + "gasUsed": "310021", + "confirmations": "5552695", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12654153", - "timeStamp": "1623962421", - "hash": "0xdad05aa7e24839e3a1b40ea8859e51d6ce834ded757239b07251c852617a2ba3", - "nonce": "15", - "blockHash": "0xa7dda76aebdc96632b94a63bef5efbef913c4dc9de688002d5e761fc0cead89f", - "transactionIndex": "41", + "blockNumber": "13878632", + "timeStamp": "1640492972", + "hash": "0x866b8caf214d84c1a43b3eff705f5a2b2ac8b12ee14051b2f98c841533c86743", + "nonce": "34", + "blockHash": "0x9f839370c35c8f65c2c1a7eacfb73778c0a1ccaef34dc4db550b11d38c32ac05", + "transactionIndex": "203", "from": "0x0709e442a5469b88bb090dd285b1b3a63fb0c226", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "330775", - "gasPrice": "20000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000007672c4b23049f1b1b800000000000000000000000000000000000000000000000000000000000000002", - "contractAddress": "", - "cumulativeGasUsed": "4350769", - "gasUsed": "298897", - "confirmations": "209804" - }, - { - "blockNumber": "12654646", - "timeStamp": "1623968938", - "hash": "0x69167a771406e4206836f1dada3bc9c68ff9340c8b9036a2e5d949164a1bd88b", - "nonce": "131", - "blockHash": "0xdc9bfa92ae1abe4837948afa912da39ae4c314991081ad99dacf13a2faa87b3b", - "transactionIndex": "119", - "from": "0x94a2ffdbdbd84984ac7967878c5c397126e7bbbe", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "344768", - "gasPrice": "10000000000", + "gas": "299412", + "gasPrice": "49411088418", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000001fc7dbd2c5e27fddd7a0000000000000000000000000000000000000000000000000000000000000004", + "input": "0x9d7de6b30000000000000000000000000000000000000000000007672c4b23049f1b1b800000000000000000000000000000000000000000000000000000000000000014", "contractAddress": "", - "cumulativeGasUsed": "10633777", - "gasUsed": "312671", - "confirmations": "209311" + "cumulativeGasUsed": "20151088", + "gasUsed": "291812", + "confirmations": "5478708", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12655352", - "timeStamp": "1623978495", - "hash": "0xb919b7a69053dae798465ef5bc4ef08c5929fc8e324bd290e233887e95df432c", - "nonce": "304", - "blockHash": "0xa57b205166f943cb8f8f3f09467c72467ec95b9c6f0e0d66a4c08e148788b5f0", - "transactionIndex": "126", + "blockNumber": "13892849", + "timeStamp": "1640682816", + "hash": "0xf6bc6b0048c06099789e8eb90e4fc0264bb56e0cdcc794b64cbcc30f31916423", + "nonce": "834", + "blockHash": "0xa68292530cdfc246f4b20df2ea2df742749dd11f3265f20ef8bf737479ddc5d3", + "transactionIndex": "191", "from": "0xe0d62cc9233c7e2f1f23fe8c77d6b4d1a265d7cd", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "296917", - "gasPrice": "20000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000000008cf531326bb05c1900000000000000000000000000000000000000000000000000000000000000d0", - "contractAddress": "", - "cumulativeGasUsed": "8360601", - "gasUsed": "265379", - "confirmations": "208605" - }, - { - "blockNumber": "12656348", - "timeStamp": "1623990981", - "hash": "0x79ef458dd9b7f200ef43c07ebd54327ef7821996adbbdf728a37cead889c2aa8", - "nonce": "292", - "blockHash": "0x6cfedcf951953a44868f448bce72f7c6b1f827c912d9a5dcc1c97b779900d5b3", - "transactionIndex": "39", - "from": "0x51ec66e63199176f59c80268e0be6ffa91fab220", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "459780", - "gasPrice": "20000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000153bc08d918b19bf49e0000000000000000000000000000000000000000000000000000000000000003", - "contractAddress": "", - "cumulativeGasUsed": "3457593", - "gasUsed": "442715", - "confirmations": "207609" - }, - { - "blockNumber": "12657017", - "timeStamp": "1623999764", - "hash": "0xcb5505bd5e2f79950a11a0887495492c67d2ce5f8e914924a363e50be70a1a07", - "nonce": "123", - "blockHash": "0x6f85c36442e91815383c119c71b10f2e038f87e72ac832301ac7ef7befbe93c3", - "transactionIndex": "71", - "from": "0x865dc9a621b50534ba3d17e0ea8447c315e31886", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "310896", - "gasPrice": "10000000000", + "gas": "299425", + "gasPrice": "62064274776", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000000ad903fdc34910ba3c0000000000000000000000000000000000000000000000000000000000000029", + "input": "0x9d7de6b300000000000000000000000000000000000000000000005579e670fe92a4623b000000000000000000000000000000000000000000000000000000000000000e", "contractAddress": "", - "cumulativeGasUsed": "6201866", - "gasUsed": "309140", - "confirmations": "206940" + "cumulativeGasUsed": "16667317", + "gasUsed": "291825", + "confirmations": "5464491", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12657254", - "timeStamp": "1624003072", - "hash": "0x2a7cbe1835be0d4ae837afc48881ee7ee01def054833c3f4f5c0c91ff4f4a5f5", - "nonce": "13", - "blockHash": "0x3ef35849087736ecf326a3dddc974c3a1c7453fce33a756ad694de99aef515df", - "transactionIndex": "132", - "from": "0x0a71e650f70b35fca8b70e71e4441df8d44e01e9", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "459642", - "gasPrice": "10000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000000056bc75e2d6310000000000000000000000000000000000000000000000000000000000000000000d0", - "contractAddress": "", - "cumulativeGasUsed": "14926098", - "gasUsed": "442577", - "confirmations": "206703" - }, - { - "blockNumber": "12659711", - "timeStamp": "1624036965", - "hash": "0x4cf64056efebdfc338b440fa7282430f895a4792ef0d0317bb5c3ab240fb2c8b", - "nonce": "3", - "blockHash": "0xdf5fe9b090c0657ef509d507b51179ccc4b68db975b05bf76b024f65ae01d18f", - "transactionIndex": "95", - "from": "0xc1b6052e707dff9017deab13ae9b89008fc1fc5d", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", - "value": "0", - "gas": "445814", - "gasPrice": "19000000000", - "isError": "0", - "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000006c6b935b8bbd400000000000000000000000000000000000000000000000000000000000000000000b", - "contractAddress": "", - "cumulativeGasUsed": "8625054", - "gasUsed": "428968", - "confirmations": "204246" - }, - { - "blockNumber": "12659729", - "timeStamp": "1624037216", - "hash": "0x8067ab0e65d76312aa0d0f7afb84cc00c81cff6ca7ddea31647620cbc7911960", - "nonce": "5", - "blockHash": "0xfa5e2558729b3920792d972394585cf49f267b6d7fa2e80f5b97bfec5a597658", - "transactionIndex": "142", - "from": "0xc1b6052e707dff9017deab13ae9b89008fc1fc5d", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "blockNumber": "14105918", + "timeStamp": "1643529447", + "hash": "0x4907cadf0011ca9d72bd5fd5b2ad55c3a459cde240025cc7b45ac9b46a67130d", + "nonce": "368", + "blockHash": "0x0550b3ab49ffbdfa5624a6c3c8f02a05cd768fc7dc03ef386ca71f4dcd7fd502", + "transactionIndex": "250", + "from": "0x9be95ef84676393588e49ad8b99c9d4cdfdaa631", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "311783", - "gasPrice": "18700000000", + "gas": "300539", + "gasPrice": "90813906332", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000005bf7566c1d1f0a0f820000000000000000000000000000000000000000000000000000000000000002", + "input": "0x9d7de6b300000000000000000000000000000000000000000000002824396cc4d1400000000000000000000000000000000000000000000000000000000000000000001b", "contractAddress": "", - "cumulativeGasUsed": "13741005", - "gasUsed": "279974", - "confirmations": "204228" + "cumulativeGasUsed": "21525927", + "gasUsed": "292939", + "confirmations": "5251422", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12660513", - "timeStamp": "1624047256", - "hash": "0x0758f54f30a8ece0baa9a81b9bd359f6c7e5cc565298f643d44fef3419a39a65", - "nonce": "177", - "blockHash": "0x5e2f538ee4a06c16a53fe61eb7fe57349124f34efd153e713f11ab6288e49459", - "transactionIndex": "77", - "from": "0x9be95ef84676393588e49ad8b99c9d4cdfdaa631", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "blockNumber": "14403892", + "timeStamp": "1647518396", + "hash": "0x415169f5a00d1043295833e4af7f85be74c1be7acd4c1b37a184aab842e215b6", + "nonce": "2279", + "blockHash": "0x8d8798b876638b13187f56350a5cbb40ecc7328c8a916167ccb1b6f75a1bc11a", + "transactionIndex": "145", + "from": "0x9d3f4eeb533b8e3c8f50dbbd2e351d1bf2987908", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "459794", - "gasPrice": "30000000000", + "gas": "300568", + "gasPrice": "30709363000", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000000281d901f4fdd1000000000000000000000000000000000000000000000000000000000000000000001", + "input": "0x9d7de6b300000000000000000000000000000000000000000000022905914c52531970b8000000000000000000000000000000000000000000000000000000000000000b", "contractAddress": "", - "cumulativeGasUsed": "7653688", - "gasUsed": "442729", - "confirmations": "203444" + "cumulativeGasUsed": "17992073", + "gasUsed": "292968", + "confirmations": "4953448", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12661278", - "timeStamp": "1624057949", - "hash": "0x19e8113e8bf4568aba824e148f841f41b2fdfd8ecb617dd19a3897756c9217e4", - "nonce": "1935", - "blockHash": "0x72f2246cf26d5c47bfbcc076c9148eadfb8dc7a5aa63ec36c4245e4c0fc2c7d8", - "transactionIndex": "186", - "from": "0xfffff6e70842330948ca47254f2be673b1cb0db7", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "blockNumber": "14453545", + "timeStamp": "1648185754", + "hash": "0x67c197157e5523ec2cc4b8b42e2a17e656d61a930718bcd0d87e340fe457c228", + "nonce": "9823", + "blockHash": "0xe53008ec377f3386f50e3163f7a6a1c4a8bfc83434b28acb7d3b833c00c489e9", + "transactionIndex": "6", + "from": "0xdec08cb92a506b88411da9ba290f3694be223c26", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "330619", - "gasPrice": "16000000000", + "gas": "299335", + "gasPrice": "28359855075", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000007ad7113237ab28000000000000000000000000000000000000000000000000000000000000000000d0", + "input": "0x9d7de6b300000000000000000000000000000000000000000000017dd3d16843be48fa810000000000000000000000000000000000000000000000000000000000000025", "contractAddress": "", - "cumulativeGasUsed": "7316685", - "gasUsed": "313741", - "confirmations": "202679" + "cumulativeGasUsed": "1218767", + "gasUsed": "291735", + "confirmations": "4903795", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12671952", - "timeStamp": "1624202564", - "hash": "0xd43e57b76031798649b05fe52e8fe2174999679f20f4f7b7a0b9798cbd63d560", - "nonce": "184", - "blockHash": "0x87fbec6f0444b41c5e4bfd344dccd35019689c95073bd6ad359cf7965ba37d3e", - "transactionIndex": "100", - "from": "0x0000ce08fa224696a819877070bf378e8b131acf", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "blockNumber": "14501815", + "timeStamp": "1648835264", + "hash": "0xfe5fdfaafe87e2fab2eb47a661b20ff00af3a774c40760fbd42f2dcbecd731cb", + "nonce": "522", + "blockHash": "0x661e11311523e5f45ff79561e3c2ab9246b0bb4531997a7af5ecc1d879136458", + "transactionIndex": "226", + "from": "0x865dc9a621b50534ba3d17e0ea8447c315e31886", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "445874", - "gasPrice": "12132500000", + "gas": "299343", + "gasPrice": "74540173862", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000050438f7184966926130000000000000000000000000000000000000000000000000000000000000002", + "input": "0x9d7de6b300000000000000000000000000000000000000000000003043f2e885c284efa20000000000000000000000000000000000000000000000000000000000000019", "contractAddress": "", - "cumulativeGasUsed": "11879507", - "gasUsed": "414028", - "confirmations": "192005" + "cumulativeGasUsed": "22219160", + "gasUsed": "291743", + "confirmations": "4855525", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12674204", - "timeStamp": "1624231895", - "hash": "0x1d030c005e46fb235524396123596383a1f9d95799bcfa6a6a5dc4fa96b1fb78", - "nonce": "94", - "blockHash": "0x63c26fd9e390b01a86456c6686043c14ec838c65f4d2744a751410cae9e6699d", - "transactionIndex": "72", + "blockNumber": "14528446", + "timeStamp": "1649195374", + "hash": "0xa4f37898e258d9dda0efd084cf4308fc391c9b398ddd1cf176c6fa0bc3219e3f", + "nonce": "140", + "blockHash": "0x643115c5d1ea1224a4fa11b658d90ca895631bd3852d8022f0c0a5fcabeb2f1d", + "transactionIndex": "76", "from": "0xf6501068a54f3eab46c1f145cb9d3fb91658b220", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "296938", - "gasPrice": "10000000000", + "gas": "282340", + "gasPrice": "71277714553", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000050d3c81857eb6c00000000000000000000000000000000000000000000000000000000000000000001", + "input": "0x9d7de6b3000000000000000000000000000000000000000000000086a657deffaa010000000000000000000000000000000000000000000000000000000000000000000d", "contractAddress": "", - "cumulativeGasUsed": "6339121", - "gasUsed": "280400", - "confirmations": "189753" + "cumulativeGasUsed": "6167769", + "gasUsed": "274740", + "confirmations": "4828894", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12679825", - "timeStamp": "1624307774", - "hash": "0x2c68e76152483b5c7f8a9f24a196c3ab5c6bcecbfa42c98e39400cce253fa994", - "nonce": "442", - "blockHash": "0xff9b73cd78a23d5001a7c34eb5c614fe96239ea928efda92f8611542b56f445b", - "transactionIndex": "28", - "from": "0xc2cb4b1bcaebaa78c8004e394cf90ba07a61c8f7", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "blockNumber": "14610787", + "timeStamp": "1650306627", + "hash": "0x78af1eda4c962670cb90b6d49f86a7f77b739ddc36e6719f363625af72fbf8ef", + "nonce": "4592", + "blockHash": "0x404f9f458750148e51d124f2d7bc67a38d302470f7d59967d050f8978a2511b7", + "transactionIndex": "279", + "from": "0xad286cf287b91719ee85d3ba5cf3da483d631dba", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "445870", - "gasPrice": "24100000000", + "gas": "282231", + "gasPrice": "67326750025", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000053b1b7e838a88939a670000000000000000000000000000000000000000000000000000000000000001", + "input": "0x9d7de6b3000000000000000000000000000000000000000000000325664b203d8a840000000000000000000000000000000000000000000000000000000000000000001c", "contractAddress": "", - "cumulativeGasUsed": "3748814", - "gasUsed": "414024", - "confirmations": "184132" + "cumulativeGasUsed": "19402582", + "gasUsed": "274631", + "confirmations": "4746553", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12682171", - "timeStamp": "1624339812", - "hash": "0x761659457b78ac0c4ac8703495094b72b384e835fa3b9a885b7ca99ac167206d", - "nonce": "1021", - "blockHash": "0x020ff0d09cd3e9d7484de54d853024ccbcc69b617a6fcf49027ddd12e9c6b730", - "transactionIndex": "91", - "from": "0xb2812370f17465ae096ced55679428786734a678", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "blockNumber": "15213831", + "timeStamp": "1658780651", + "hash": "0x1637a9251397fc92eb358bc686621f452e29e9978f7192165bb7bd366e8edcf8", + "nonce": "686", + "blockHash": "0x9e3e06de1852ce75f01a22b163a3119dcade38043b640cc9a935e54ecac8b9d3", + "transactionIndex": "58", + "from": "0xefc0e701a824943b469a694ac564aa1eff7ab7dd", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "330733", - "gasPrice": "14000000000", + "gas": "295796", + "gasPrice": "18583368191", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000020cc0fc69297540000000000000000000000000000000000000000000000000000000000000000000c", + "input": "0x9d7de6b30000000000000000000000000000000000000000000000bdbc41e0348b3000000000000000000000000000000000000000000000000000000000000000000007", "contractAddress": "", - "cumulativeGasUsed": "8435256", - "gasUsed": "313855", - "confirmations": "181786" + "cumulativeGasUsed": "5133644", + "gasUsed": "288196", + "confirmations": "4143509", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12727147", - "timeStamp": "1624944895", - "hash": "0x639c30d46998d457aa42e4d515216a161581d55e101c8aba840d31d37daff46e", - "nonce": "194", - "blockHash": "0x76bdaaae22083ce0949f07d2421be586bc1d8e3ee20a29a1c1d627d9a4b7cf82", - "transactionIndex": "59", - "from": "0x9be95ef84676393588e49ad8b99c9d4cdfdaa631", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "blockNumber": "16115913", + "timeStamp": "1670210903", + "hash": "0xae64eb12181f2bcb88ba007130976a4624e6f366b324e843eb3d1ebc33602e4c", + "nonce": "36", + "blockHash": "0xad2b42d1b516b54429f8f731d134d2c6caef23a1614d7789f83b587e91804d90", + "transactionIndex": "73", + "from": "0x2582a712c2c2e9fbd9f5b081be4b4f699d2489b5", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "294432", - "gasPrice": "10000000000", + "gas": "334960", + "gasPrice": "12987234015", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000000006a94d74f43000000000000000000000000000000000000000000000000000000000000000000004", + "input": "0x9d7de6b30000000000000000000000000000000000000000000000008ac7230489e80000000000000000000000000000000000000000000000000000000000000000002e", "contractAddress": "", - "cumulativeGasUsed": "9724824", - "gasUsed": "277894", - "confirmations": "136810" + "cumulativeGasUsed": "6847404", + "gasUsed": "317760", + "confirmations": "3241427", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12739733", - "timeStamp": "1625115003", - "hash": "0x117129bd2e77a3774b8ff8e52323b9c6909d3ec278cdb0e78446537619e49d49", - "nonce": "280", - "blockHash": "0x2d837f10075378787d79e0d099abc04d012f3b0630a960e242dc9fccfae9bdab", - "transactionIndex": "92", - "from": "0xa1c7bd2e48f7f3922e201705f3491c841135f483", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "blockNumber": "16128956", + "timeStamp": "1670368307", + "hash": "0x7e2e254043591b08f74e3c7b6f75b49763c95eb3280267b1d512f7fcf33c7fe2", + "nonce": "142", + "blockHash": "0x7270d6df4f72dc265ea387f2567e5ea7e9c08ff0598bcc377dd9cedd237baf91", + "transactionIndex": "96", + "from": "0x64dff05df95f9f7060e13cc1a2c78a9bfd3a608e", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "449610", - "gasPrice": "17600000000", + "gas": "282304", + "gasPrice": "14221274918", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000027f3edfb34e6e4000000000000000000000000000000000000000000000000000000000000000000d0", + "input": "0x9d7de6b30000000000000000000000000000000000000000000000288513d04ae0b380000000000000000000000000000000000000000000000000000000000000000028", "contractAddress": "", - "cumulativeGasUsed": "8211741", - "gasUsed": "432545", - "confirmations": "124224" + "cumulativeGasUsed": "11002449", + "gasUsed": "274704", + "confirmations": "3228384", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12739932", - "timeStamp": "1625117860", - "hash": "0xc8b65e708967843cc3572ade78658d5cf8dff8d4e625e96cde2b1e2cf125829b", - "nonce": "284", - "blockHash": "0xa2d047b9c9b6b3e4e542eb3e9b53ef24a459c688b0c2268d81a210e5b8541288", - "transactionIndex": "122", - "from": "0xa1c7bd2e48f7f3922e201705f3491c841135f483", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "blockNumber": "16129251", + "timeStamp": "1670371883", + "hash": "0x3215df26e84704f71b7a37f70ceb3ac8dd19f064a10fefd0dc66d36d97877352", + "nonce": "441", + "blockHash": "0xa70d3cf7a83123d910b1c531ae49af1d4ac5e7938ad8149e7e022651d667f98d", + "transactionIndex": "78", + "from": "0x2b0bdf08039640cec28f4ba3c5f1d4153e2aad0d", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "416319", - "gasPrice": "14000000000", + "gas": "446140", + "gasPrice": "13565326413", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb1580000000000000000000000000000000000000000000000ac1df9ee21093c000000000000000000000000000000000000000000000000000000000000000000d0", + "input": "0x9d7de6b3000000000000000000000000000000000000000000000050e9788912d53a39f50000000000000000000000000000000000000000000000000000000000000029", "contractAddress": "", - "cumulativeGasUsed": "12870450", - "gasUsed": "399813", - "confirmations": "124025" + "cumulativeGasUsed": "6497581", + "gasUsed": "438540", + "confirmations": "3228089", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12745003", - "timeStamp": "1625186029", - "hash": "0x75e325eeb292dccbd826c3b67872165d9aaa48572c837891106b88a7929f1faa", - "nonce": "787", - "blockHash": "0xd85a757572f4566af960056e7900d7e7811a29c15d71e14138e1b6f5a9e2a9ee", - "transactionIndex": "121", - "from": "0x3eb851c3959f0d37e15c2d9476c4adb46d5231d1", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "blockNumber": "16129261", + "timeStamp": "1670372003", + "hash": "0x4d2be80e3fa91fe0332e22f8713c06b188562da76aaecadfee7bfc3e9e479432", + "nonce": "515", + "blockHash": "0xc360fceb2154f95e6a3538c44c028e5b623b4daeb91382d453a5de4336b10463", + "transactionIndex": "40", + "from": "0x7af2fbb8940617743b6b168d7b494fa2aec0ed3d", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "330595", - "gasPrice": "10000000000", + "gas": "299416", + "gasPrice": "15226912793", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000005bdf9cb345eaf862e200000000000000000000000000000000000000000000000000000000000000d0", + "input": "0x9d7de6b30000000000000000000000000000000000000000000000287e6ce9f8b67a10860000000000000000000000000000000000000000000000000000000000000027", "contractAddress": "", - "cumulativeGasUsed": "10048908", - "gasUsed": "313717", - "confirmations": "118954" + "cumulativeGasUsed": "23735680", + "gasUsed": "291816", + "confirmations": "3228079", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12757455", - "timeStamp": "1625353407", - "hash": "0x014f445c300208c033de4730b9a55b81347b4afd9c448cedacb8b79a9da4c44a", - "nonce": "2158", - "blockHash": "0x06a560504e8921f469843303a454a0d55e53978f98154e08f0dfc2db493fd3ec", - "transactionIndex": "83", - "from": "0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "blockNumber": "16820998", + "timeStamp": "1678733891", + "hash": "0x1e361ef05018d14998bc9ee469ee53982e286f214329de89123a006c8e4b60cf", + "nonce": "83", + "blockHash": "0x71e19c96d6b0bd4855fddda4478846d969c5496af021eee964bc36a6e61249f1", + "transactionIndex": "125", + "from": "0x004b709f7ca60e1f1618d5f7a1cf8ae46e0b88d8", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "316040", - "gasPrice": "10100000000", + "gas": "316484", + "gasPrice": "35618136218", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000fcc48cebda35139d54200000000000000000000000000000000000000000000000000000000000000d0", + "input": "0x9d7de6b300000000000000000000000000000000000000000000032bc1fbccb5d5796b760000000000000000000000000000000000000000000000000000000000000024", "contractAddress": "", - "cumulativeGasUsed": "4918936", - "gasUsed": "284162", - "confirmations": "106502" + "cumulativeGasUsed": "12141866", + "gasUsed": "308884", + "confirmations": "2536342", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12763559", - "timeStamp": "1625435326", - "hash": "0x9a2f6e91149dfdb699016e4295c6102ecab95edb09dc7c6bf922b4f080755bbb", - "nonce": "4109", - "blockHash": "0x56e44d57f861f69f9fcbf26d658be46e1b7cabf4dfc86ff5439dadca337cc2ba", - "transactionIndex": "81", - "from": "0xad286cf287b91719ee85d3ba5cf3da483d631dba", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "blockNumber": "17705151", + "timeStamp": "1689501995", + "hash": "0x8739a758fa122572e232b9f2912e234cc6af7ae08cbbdc3013af2dcfcf80f56b", + "nonce": "125", + "blockHash": "0x28392e560c803726b32e2e3841e2cd8aaf577475402ed9196a4ac63763b82e0c", + "transactionIndex": "101", + "from": "0xd3bc13258e685df436715104882888d087f87ed8", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "459824", - "gasPrice": "13000000000", + "gas": "282355", + "gasPrice": "15256316167", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb158000000000000000000000000000000000000000000000325664b203d8a8400000000000000000000000000000000000000000000000000000000000000000004", + "input": "0x9d7de6b30000000000000000000000000000000000000000000004999b2f3e9d028c0000000000000000000000000000000000000000000000000000000000000000001a", "contractAddress": "", - "cumulativeGasUsed": "6070202", - "gasUsed": "442759", - "confirmations": "100398" + "cumulativeGasUsed": "8032347", + "gasUsed": "274755", + "confirmations": "1652189", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" }, { - "blockNumber": "12811688", - "timeStamp": "1626082430", - "hash": "0x94d8cff80daa506f9d4ca9f914b128f8a8d19caa2970ccb4f8cfdc94d78d74e6", - "nonce": "7", - "blockHash": "0x62175384d42bb791cce982b6a957ce865f0be9fef31ed9b84c334327f4ba95d5", - "transactionIndex": "84", - "from": "0xbd37a957773d883186b989f6b21c209459022252", - "to": "0x831e3674abc73d7a3e9d8a9400af2301c32cef0c", + "blockNumber": "18419296", + "timeStamp": "1698140543", + "hash": "0x7914eb36c12a9a8747a0d7efa5eed5da16ab45c9ee3abe9418ddd9bb1072b90c", + "nonce": "685", + "blockHash": "0x80dc10d354c6fbf5f709e5970e37dae6c08bedd356730b72a79c57894b19ec7d", + "transactionIndex": "33", + "from": "0x7c361828849293684ddf7212fd1d2cb5f0aade70", + "to": "0xc251ecd9f1bd5230823f9a0f99a44a87ddd4ca38", "value": "0", - "gas": "456828", - "gasPrice": "12100000000", + "gas": "474867", + "gasPrice": "24594626496", "isError": "0", "txreceipt_status": "1", - "input": "0xe2bbb15800000000000000000000000000000000000000000000000168d28e3f0028000000000000000000000000000000000000000000000000000000000000000000d0", + "input": "0x9d7de6b300000000000000000000000000000000000000000000005510e6a88fc67a95ac0000000000000000000000000000000000000000000000000000000000000012", "contractAddress": "", - "cumulativeGasUsed": "8783183", - "gasUsed": "454763", - "confirmations": "52269" + "cumulativeGasUsed": "3419313", + "gasUsed": "308978", + "confirmations": "938044", + "methodId": "0x9d7de6b3", + "functionName": "removeLiquidity(uint256 withdrawAmount, uint256 deadline)" } -] +] \ No newline at end of file diff --git a/bondingv2_migration.json b/bondingv2_migration.json new file mode 100644 index 0000000..533a792 --- /dev/null +++ b/bondingv2_migration.json @@ -0,0 +1,229 @@ +[ + { + "address": "0xefc0e701a824943b469a694ac564aa1eff7ab7dd", + "deposits": [ + { + "hash": "0xb543c6bba4159b2c73754b1477eeda44ee0527960a58fe3f4cb89d09c4ecda77", + "lpsAmount": "20351824946109000000000", + "weeks": "208", + "bondingShareId": "32", + "bondingShareAmount": "1", + "withdraw": null + }, + { + "hash": "0x881768c7e1cde1b9d0b443b5df70f7210a32f8606a520d8ef1915d4dc002f45b", + "lpsAmount": "20351824946109000000000", + "weeks": "208", + "bondingShareId": "33", + "bondingShareAmount": "1", + "withdraw": null + } + ], + "migration": { + "lpsAmount": "40703649892217999999999", + "weeks": "208" + } + }, + { + "address": "0xdec08cb92a506b88411da9ba290f3694be223c26", + "deposits": [ + { + "hash": "0xc27f060479efedf997b42c1e336057534084db4935a2aed86266aae35980773e", + "lpsAmount": "0", + "weeks": "208", + "bondingShareId": "34", + "bondingShareAmount": "1", + "withdraw": null + }, + { + "hash": "0x17cf0466439a165353dc977f62806b7036df6dd8dc6e1c8f2938c42f70005f91", + "lpsAmount": "7043472587335639038593", + "weeks": "4", + "bondingShareId": "37", + "bondingShareAmount": "1", + "withdraw": null + }, + { + "hash": "0x4b5b40e4edf92f7692e88e226e0e84f556fc31aecbc6758ee5b87afd22b49c38", + "lpsAmount": "2399959119875157837134", + "weeks": "208", + "bondingShareId": "42", + "bondingShareAmount": "1", + "withdraw": null + } + ], + "migration": { + "lpsAmount": "9443431707210796875726", + "weeks": "55" + } + }, + { + "address": "0x004b709f7ca60e1f1618d5f7a1cf8ae46e0b88d8", + "deposits": [ + { + "hash": "0x0e485f5e2b21f4cba90a255dab0b2f9c1930691a664c51d392da2609e216ac60", + "lpsAmount": "14974287434728263478134", + "weeks": "16", + "bondingShareId": "36", + "bondingShareAmount": "1", + "withdraw": null + } + ], + "migration": { + "lpsAmount": "14974287434728263478133", + "weeks": "16" + } + }, + { + "address": "0x0709e442a5469b88bb090dd285b1b3a63fb0c226", + "deposits": [ + { + "hash": "0xa72273151c6f957e2c9a703a91f685458271078663603d6f8cdb3b8e7a83533a", + "lpsAmount": "18354645016127011508507", + "weeks": "208", + "bondingShareId": "38", + "bondingShareAmount": "1", + "withdraw": null + }, + { + "hash": "0x3a1439bc2037cf22b52c7019df06b9f1f702e95253623df868e3b0beb1954737", + "lpsAmount": "2019728956757894302720", + "weeks": "208", + "bondingShareId": "44", + "bondingShareAmount": "1", + "withdraw": null + } + ], + "migration": { + "lpsAmount": "20374373972884905811226", + "weeks": "208" + } + }, + { + "address": "0x7af2fbb8940617743b6b168d7b494fa2aec0ed3d", + "deposits": [ + { + "hash": "0x70c73d77bec3430de45daff56e550eb67c3668866963528a95df33a9e4ac3588", + "lpsAmount": "746979676349068349574", + "weeks": "4", + "bondingShareId": "39", + "bondingShareAmount": "1", + "withdraw": null + } + ], + "migration": { + "lpsAmount": "746979676349068349573", + "weeks": "4" + } + }, + { + "address": "0x64dff05df95f9f7060e13cc1a2c78a9bfd3a608e", + "deposits": [ + { + "hash": "0x62712b707e22b6ae1e95bfed477992143197703db4841547f71e189a80b821e1", + "lpsAmount": "747459000000000000000", + "weeks": "2", + "bondingShareId": "40", + "bondingShareAmount": "1", + "withdraw": null + } + ], + "migration": { + "lpsAmount": "747458999999999999999", + "weeks": "2" + } + }, + { + "address": "0x2b0bdf08039640cec28f4ba3c5f1d4153e2aad0d", + "deposits": [ + { + "hash": "0x3e0c1ddad08c001bcb5ff103bf0891660714d7918a86f83eca958f1e4202048b", + "lpsAmount": "1492562873018786396661", + "weeks": "4", + "bondingShareId": "41", + "bondingShareAmount": "1", + "withdraw": null + } + ], + "migration": { + "lpsAmount": "1492562873018786396660", + "weeks": "4" + } + }, + { + "address": "0xeeac255b45a57595080820c17f40fbd8bbc6b993", + "deposits": [ + { + "hash": "0x66103d40db66ca7a7b456423a0bce2c431ff48b357601f575d779d6331ebadce", + "lpsAmount": "0", + "weeks": "208", + "bondingShareId": "43", + "bondingShareAmount": "1", + "withdraw": null + } + ], + "migration": { + "lpsAmount": "-1", + "weeks": "1" + } + }, + { + "address": "0x0709b103d46d71458a71e5d81230dd688809a53d", + "deposits": [ + { + "hash": "0x2ab2f637ade0e58b5177f8b9aa20a9df7d140513be3257a337251f21bfad7ac0", + "lpsAmount": "310353", + "weeks": "1", + "bondingShareId": "45", + "bondingShareAmount": "1", + "withdraw": null + } + ], + "migration": { + "lpsAmount": "310352", + "weeks": "1" + } + }, + { + "address": "0x2582a712c2c2e9fbd9f5b081be4b4f699d2489b5", + "deposits": [ + { + "hash": "0x7886939653d56e62487cb3d60f8b7bd0237b8bf132b239a87773664d97513faf", + "lpsAmount": "10000000000000000000", + "weeks": "4", + "bondingShareId": "46", + "bondingShareAmount": "1", + "withdraw": null + }, + { + "hash": "0x95ed34ec2ad7f89e2abca33f9569e4aa3c2a7e176b9345ee61e0e85c36bc8afc", + "lpsAmount": "10200000000000000000", + "weeks": "1", + "bondingShareId": "47", + "bondingShareAmount": "1", + "withdraw": null + } + ], + "migration": { + "lpsAmount": "20199999999999999999", + "weeks": "2" + } + }, + { + "address": "0xf6501068a54f3eab46c1f145cb9d3fb91658b220", + "deposits": [ + { + "hash": "0x6fca3b959f0b207db2bb16303624de3e26073ad32597c43aedb6d82462e652d6", + "lpsAmount": "858932507320256038784", + "weeks": "12", + "bondingShareId": "48", + "bondingShareAmount": "1", + "withdraw": null + } + ], + "migration": { + "lpsAmount": "858932507320256038783", + "weeks": "12" + } + } +] \ No newline at end of file diff --git a/contracts/BondingDebt.sol b/contracts/BondingDebt.sol new file mode 100644 index 0000000..9419c17 --- /dev/null +++ b/contracts/BondingDebt.sol @@ -0,0 +1,67 @@ +// SPDX-License-Identifier: MIT +pragma solidity ^0.8.3; + +import "./interfaces/IERC20Ubiquity.sol"; +import "./UbiquityAlgorithmicDollarManager.sol"; + +// Allows to claim UBQ missing compensation till 6th May 2024 for Bond holders affected with wrong staking multiplier +// Full explanation https://github.com/ubiquity/ubiquity-dollar/issues/752#issuecomment-2095837822 + +contract BondingDebt { + mapping(address => bool) public isUserClaimed; + + // Ubiquity Manager + UbiquityAlgorithmicDollarManager public manager; + + // ----------- Modifiers ----------- + modifier onlyTokenManager() { + require( + manager.hasRole(manager.UBQ_TOKEN_MANAGER_ROLE(), msg.sender), + "BondingDebt: not UBQ manager" + ); + _; + } + + constructor(address _manager) { + manager = UbiquityAlgorithmicDollarManager(_manager); + } + + function claim(address toClaim) external onlyTokenManager { + require(!isUserClaimed[toClaim], "Already claimed"); + + address governanceToken = 0x4e38D89362f7e5db0096CE44ebD021c3962aA9a0; + address treasuryAddress = 0xefC0e701A824943b469a694aC564Aa1efF7Ab7dd; + + // Bond 1 + if (toClaim == address(0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D)) { + IERC20Ubiquity(governanceToken).mint(toClaim, 35704952407232639376); + IERC20Ubiquity(governanceToken).mint(treasuryAddress, 7140990481446527875); + } + + // Bond 2 + if (toClaim == address(0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d)) { + IERC20Ubiquity(governanceToken).mint(toClaim, 2630501621780289065714618); + IERC20Ubiquity(governanceToken).mint(treasuryAddress, 526100324356057813142923); + } + + // Bond 3 + if (toClaim == address(0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108)) { + IERC20Ubiquity(governanceToken).mint(toClaim, 1577484595484460523315806); + IERC20Ubiquity(governanceToken).mint(treasuryAddress, 315496919096892104663161); + } + + // Bond 5 + if (toClaim == address(0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6)) { + IERC20Ubiquity(governanceToken).mint(toClaim, 329713782662103366904643); + IERC20Ubiquity(governanceToken).mint(treasuryAddress, 65942756532420673380928); + } + + // Bond 6 + if (toClaim == address(0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2)) { + IERC20Ubiquity(governanceToken).mint(toClaim, 317041833739125580390236); + IERC20Ubiquity(governanceToken).mint(treasuryAddress, 63408366747825116078047); + } + + isUserClaimed[toClaim] = true; + } +} diff --git a/deploy/V2Test.ts b/deploy/V2Test.ts index 3566071..79606a8 100644 --- a/deploy/V2Test.ts +++ b/deploy/V2Test.ts @@ -200,7 +200,15 @@ const func: DeployFunction = async (hre: HardhatRuntimeEnvironment) => { const ubiquityGovernance: UbiquityGovernance = ubqFactory.attach( ubqGovAdr ) as UbiquityGovernance; - + deployments.log("idsAfter:", idsAfter[0].toNumber()); + let bond = await bondingShareV2.getBond(idsAfter[0]); + deployments.log(`bond id:${idsAfter[0].toNumber()} + minter:${bond.minter} + lpAmount:${ethers.utils.formatEther(bond.lpAmount)} + lpFirstDeposited:${ethers.utils.formatEther(bond.lpFirstDeposited)} + endBlock:${bond.endBlock.toNumber()} + tx:${tx.blockNumber ? tx.blockNumber.toString() : ""} + `); deployments.log( `UbiquityAlgorithmicDollarManager deployed at:`, manager.address diff --git a/hardhat.config.ts b/hardhat.config.ts index f98affb..e752670 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -107,7 +107,7 @@ const config: HardhatUserConfig = { url: `https://eth-mainnet.alchemyapi.io/v2/${ process.env.ALCHEMY_API_KEY || "" }`, - blockNumber: 13252206, + blockNumber: 19810615, }, accounts, hardfork: "london", @@ -118,7 +118,7 @@ const config: HardhatUserConfig = { url: `https://eth-mainnet.alchemyapi.io/v2/${ process.env.ALCHEMY_API_KEY || "" }`, - blockNumber: 13252206, + blockNumber: 19810615, }, accounts, hardfork: "london", diff --git a/masterchef_transactions.json b/masterchef_transactions.json new file mode 100644 index 0000000..e0713a8 --- /dev/null +++ b/masterchef_transactions.json @@ -0,0 +1,46 @@ +[ + { + "blockNumber": "12931490", + "timeStamp": "1627709592", + "hash": "0x08e9f1146a0c3895b8ed91d2411fb42e369d37e5e0c4473eaabc253fb3569d24", + "nonce": "326", + "blockHash": "0x7bee7a4f149540587c07b04cd9e6363064a6b8f1d061a7afcec9c00759313d3d", + "transactionIndex": "68", + "from": "0xefc0e701a824943b469a694ac564aa1eff7ab7dd", + "to": "", + "value": "0", + "gas": "1745918", + "gasPrice": "25000000000", + "isError": "0", + "txreceipt_status": "1", + "input": "0x6080604052670de0b6b3a7640000600255670de0b6b3a764000060035566038d7ea4c68000600455670de0b6b3a76400006005553480156200004057600080fd5b5060405162001f2e38038062001f2e8339810160408190526200006391620003ae565b600180546001600160a01b0319166001600160a01b0383161790554360075560006008556005600655620000966200009d565b506200041b565b6000620000a962000215565b90506000600554821115620000d357600454600554620000ca9084620003f7565b119050620000ea565b60045482600554620000e69190620003f7565b1190505b80156200021157600160009054906101000a90046001600160a01b03166001600160a01b031663214f78826040518163ffffffff1660e01b815260040160206040518083038186803b1580156200014057600080fd5b505afa15801562000155573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017b9190620003ae565b6001600160a01b031663794e955c600354846040518363ffffffff1660e01b8152600401620001b4929190918252602082015260400190565b60206040518083038186803b158015620001cd57600080fd5b505afa158015620001e2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002089190620003de565b60035560058290555b5050565b60015460408051638fe6368360e01b815290516000926001600160a01b031691638fe63683916004808301926020929190829003018186803b1580156200025b57600080fd5b505afa15801562000270573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002969190620003ae565b6001600160a01b031663283583c6600160009054906101000a90046001600160a01b03166001600160a01b031663bc3ea0186040518163ffffffff1660e01b815260040160206040518083038186803b158015620002f357600080fd5b505afa15801562000308573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032e9190620003ae565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b1580156200036e57600080fd5b505afa15801562000383573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003a99190620003de565b905090565b600060208284031215620003c0578081fd5b81516001600160a01b0381168114620003d7578182fd5b9392505050565b600060208284031215620003f0578081fd5b5051919050565b6000828210156200041657634e487b7160e01b81526011600452602481fd5b500390565b611b03806200042b6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806378b3139b1161009757806389c80b6b1161006657806389c80b6b146101f6578063b5c5f67214610209578063c0d8012c1461021c578063ffd65a491461022f57610100565b806378b3139b146101a75780637b80a5c0146101ba5780637e7d09ca146101da5780637eb751c7146101e357610100565b806321933933116100d357806321933933146101625780633a98ef391461016b57806347e54e3814610173578063481c6a751461017c57610100565b8063053f14da146101055780630efe6a8b1461012157806316f0115b146101365780631aeb2d0914610159575b600080fd5b61010e60055481565b6040519081526020015b60405180910390f35b61013461012f36600461192a565b610242565b005b600754600854610144919082565b60408051928352602083019190915201610118565b61010e60035481565b61010e60045481565b60005461010e565b61010e60025481565b60015461018f906001600160a01b031681565b6040516001600160a01b039091168152602001610118565b6101346101b5366004611996565b610427565b6101cd6101c8366004611996565b610572565b60405161011891906119ca565b61010e60065481565b61010e6101f1366004611996565b6105aa565b610134610204366004611996565b610751565b61013461021736600461192a565b61089c565b61010e61022a366004611996565b610ac5565b61013461023d366004611996565b610c93565b600160009054906101000a90046001600160a01b03166001600160a01b031663de71c1db6040518163ffffffff1660e01b815260040160206040518083038186803b15801561029057600080fd5b505afa1580156102a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102c8919061190e565b6001600160a01b0316336001600160a01b03161461032d5760405162461bcd60e51b815260206004820181905260248201527f4d6173746572436865663a206e6f7420426f6e64696e6720436f6e747261637460448201526064015b60405180910390fd5b6000818152600960205260409020610343610dde565b80541561038b57600181015460085482546000929164e8d4a51000916103699190611a66565b6103739190611a46565b61037d9190611a85565b905061038985826111c6565b505b8281600001600082825461039f9190611a2e565b9091555050600854815464e8d4a51000916103b991611a66565b6103c39190611a46565b8160010181905550826000808282546103dc9190611a2e565b909155505060405183815282906001600160a01b038616907f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159060200160405180910390a350505050565b60015460408051633b4d977360e01b815290516001600160a01b03909216916391d14854918391633b4d977391600480820192602092909190829003018186803b15801561047457600080fd5b505afa158015610488573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104ac919061197e565b6040516001600160e01b031960e084901b168152600481019190915233602482015260440160206040518083038186803b1580156104e957600080fd5b505afa1580156104fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610521919061195e565b61056d5760405162461bcd60e51b815260206004820152601b60248201527f4d6173746572436865663a206e6f7420554251206d616e6167657200000000006044820152606401610324565b600455565b61057a6118f0565b50604080518082018252600083815260096020818152938220805484529490915282526001909201549082015290565b6000818152600960209081526040808320600854600154835163310c7a0f60e21b815293519294919386936001600160a01b039092169263c431e83c92600480840193829003018186803b15801561060157600080fd5b505afa158015610615573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610639919061190e565b6001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561067157600080fd5b505afa158015610685573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a9919061197e565b600754909150431180156106bc57508015155b1561071b5760006106cb6112fd565b90506000670de0b6b3a7640000600254836106e69190611a66565b6106f09190611a46565b9050826107028264e8d4a51000611a66565b61070c9190611a46565b6107169085611a2e565b935050505b6001830154835464e8d4a5100090610734908590611a66565b61073e9190611a46565b6107489190611a85565b95945050505050565b60015460408051633b4d977360e01b815290516001600160a01b03909216916391d14854918391633b4d977391600480820192602092909190829003018186803b15801561079e57600080fd5b505afa1580156107b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107d6919061197e565b6040516001600160e01b031960e084901b168152600481019190915233602482015260440160206040518083038186803b15801561081357600080fd5b505afa158015610827573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084b919061195e565b6108975760405162461bcd60e51b815260206004820152601b60248201527f4d6173746572436865663a206e6f7420554251206d616e6167657200000000006044820152606401610324565b600655565b600160009054906101000a90046001600160a01b03166001600160a01b031663de71c1db6040518163ffffffff1660e01b815260040160206040518083038186803b1580156108ea57600080fd5b505afa1580156108fe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610922919061190e565b6001600160a01b0316336001600160a01b0316146109825760405162461bcd60e51b815260206004820181905260248201527f4d6173746572436865663a206e6f7420426f6e64696e6720436f6e74726163746044820152606401610324565b600081815260096020526040902080548311156109e15760405162461bcd60e51b815260206004820152601360248201527f4d433a20616d6f756e7420746f6f2068696768000000000000000000000000006044820152606401610324565b6109e9610dde565b600181015460085482546000929164e8d4a5100091610a089190611a66565b610a129190611a46565b610a1c9190611a85565b9050610a2885826111c6565b83826000016000828254610a3c9190611a85565b9091555050600854825464e8d4a5100091610a5691611a66565b610a609190611a46565b826001018190555083600080828254610a799190611a85565b909155505060405184815283906001600160a01b038716907ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689060200160405180910390a35050505050565b6001546040805163310c7a0f60e21b815290516000926001600160a01b03169163c431e83c916004808301926020929190829003018186803b158015610b0a57600080fd5b505afa158015610b1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b42919061190e565b604051627eeac760e11b8152336004820152602481018490526001600160a01b03919091169062fdd58e9060440160206040518083038186803b158015610b8857600080fd5b505afa158015610b9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bc0919061197e565b600114610c0f5760405162461bcd60e51b815260206004820152601760248201527f4d533a2063616c6c6572206973206e6f74206f776e65720000000000000000006044820152606401610324565b6000828152600960205260409020610c25610dde565b600181015460085482546000929164e8d4a5100091610c449190611a66565b610c4e9190611a46565b610c589190611a85565b9050610c6433826111c6565b600854825464e8d4a5100091610c7991611a66565b610c839190611a46565b6001909201919091559050919050565b60015460408051633b4d977360e01b815290516001600160a01b03909216916391d14854918391633b4d977391600480820192602092909190829003018186803b158015610ce057600080fd5b505afa158015610cf4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d18919061197e565b6040516001600160e01b031960e084901b168152600481019190915233602482015260440160206040518083038186803b158015610d5557600080fd5b505afa158015610d69573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d8d919061195e565b610dd95760405162461bcd60e51b815260206004820152601b60248201527f4d6173746572436865663a206e6f7420554251206d616e6167657200000000006044820152606401610324565b600255565b6007544311610dec576111c4565b610df4611320565b6001546040805163310c7a0f60e21b815290516000926001600160a01b03169163c431e83c916004808301926020929190829003018186803b158015610e3957600080fd5b505afa158015610e4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e71919061190e565b6001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ea957600080fd5b505afa158015610ebd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee1919061197e565b905080610ef25750436007556111c4565b6000610efc6112fd565b90506000670de0b6b3a764000060025483610f179190611a66565b610f219190611a46565b9050600160009054906101000a90046001600160a01b03166001600160a01b031663b42165d06040518163ffffffff1660e01b815260040160206040518083038186803b158015610f7157600080fd5b505afa158015610f85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa9919061190e565b6040516340c10f1960e01b8152306004820152602481018390526001600160a01b0391909116906340c10f1990604401600060405180830381600087803b158015610ff357600080fd5b505af1158015611007573d6000803e3d6000fd5b50505050600160009054906101000a90046001600160a01b03166001600160a01b031663b42165d06040518163ffffffff1660e01b815260040160206040518083038186803b15801561105957600080fd5b505afa15801561106d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611091919061190e565b6001600160a01b03166340c10f19600160009054906101000a90046001600160a01b03166001600160a01b031663c5f956af6040518163ffffffff1660e01b815260040160206040518083038186803b1580156110ed57600080fd5b505afa158015611101573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611125919061190e565b6006546111329085611a46565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b15801561117857600080fd5b505af115801561118c573d6000803e3d6000fd5b50505050828164e8d4a510006111a29190611a66565b6111ac9190611a46565b6008546111b99190611a2e565b600855505043600755505b565b60015460408051630b42165d60e41b815290516000926001600160a01b03169163b42165d0916004808301926020929190829003018186803b15801561120b57600080fd5b505afa15801561121f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611243919061190e565b6040516370a0823160e01b81523060048201529091506000906001600160a01b038316906370a082319060240160206040518083038186803b15801561128857600080fd5b505afa15801561129c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c0919061197e565b9050808311156112e3576112de6001600160a01b0383168583611486565b6112f7565b6112f76001600160a01b0383168585611486565b50505050565b600354600754600091906113119043611a85565b61131b9190611a66565b905090565b600061132a6114f2565b90506000600554821115611350576004546005546113489084611a85565b119050611365565b600454826005546113619190611a85565b1190505b801561148257600160009054906101000a90046001600160a01b03166001600160a01b031663214f78826040518163ffffffff1660e01b815260040160206040518083038186803b1580156113b957600080fd5b505afa1580156113cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113f1919061190e565b6001600160a01b031663794e955c600354846040518363ffffffff1660e01b8152600401611429929190918252602082015260400190565b60206040518083038186803b15801561144157600080fd5b505afa158015611455573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611479919061197e565b60035560058290555b5050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b1790526114ed90849061167a565b505050565b60015460408051638fe6368360e01b815290516000926001600160a01b031691638fe63683916004808301926020929190829003018186803b15801561153757600080fd5b505afa15801561154b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061156f919061190e565b6001600160a01b031663283583c6600160009054906101000a90046001600160a01b03166001600160a01b031663bc3ea0186040518163ffffffff1660e01b815260040160206040518083038186803b1580156115cb57600080fd5b505afa1580156115df573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611603919061190e565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260240160206040518083038186803b15801561164257600080fd5b505afa158015611656573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061131b919061197e565b60006116cf826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661175f9092919063ffffffff16565b8051909150156114ed57808060200190518101906116ed919061195e565b6114ed5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610324565b606061176e8484600085611778565b90505b9392505050565b6060824710156117f05760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610324565b843b61183e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610324565b600080866001600160a01b0316858760405161185a91906119ae565b60006040518083038185875af1925050503d8060008114611897576040519150601f19603f3d011682016040523d82523d6000602084013e61189c565b606091505b50915091506118ac8282866118b7565b979650505050505050565b606083156118c6575081611771565b8251156118d65782518084602001fd5b8160405162461bcd60e51b815260040161032491906119fb565b60405180604001604052806002906020820280368337509192915050565b60006020828403121561191f578081fd5b815161177181611ade565b60008060006060848603121561193e578182fd5b833561194981611ade565b95602085013595506040909401359392505050565b60006020828403121561196f578081fd5b81518015158114611771578182fd5b60006020828403121561198f578081fd5b5051919050565b6000602082840312156119a7578081fd5b5035919050565b600082516119c0818460208701611a9c565b9190910192915050565b60408101818360005b60028110156119f25781518352602092830192909101906001016119d3565b50505092915050565b6000602082528251806020840152611a1a816040850160208701611a9c565b601f01601f19169190910160400192915050565b60008219821115611a4157611a41611ac8565b500190565b600082611a6157634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615611a8057611a80611ac8565b500290565b600082821015611a9757611a97611ac8565b500390565b60005b83811015611ab7578181015183820152602001611a9f565b838111156112f75750506000910152565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114611af357600080fd5b5056fea164736f6c6343000803000a0000000000000000000000004da97a8b831c345dbe6d16ff7432df2b7b776d98", + "contractAddress": "0xb8ec70d24306ecef9d4aaf9986dcb1da5736a997", + "cumulativeGasUsed": "6573126", + "gasUsed": "1745918", + "confirmations": "6426040", + "methodId": "0x60806040", + "functionName": "atInversebrah(int248 a, uint48[] b, uint32 c, bytes20[] d, bytes30[] e)" + }, + { + "blockNumber": "12942183", + "timeStamp": "1627855339", + "hash": "0x2e888df96c7d7cffba8e3041c63e52ab53f640b8db29484ea08e58136b7954d7", + "nonce": "337", + "blockHash": "0xb548c55d1c337bb4e5e9f81afcf5fd099d16a63c4279208f635b5aa92e7cd24c", + "transactionIndex": "81", + "from": "0xefc0e701a824943b469a694ac564aa1eff7ab7dd", + "to": "0xb8ec70d24306ecef9d4aaf9986dcb1da5736a997", + "value": "0", + "gas": "52747", + "gasPrice": "35000000000", + "isError": "0", + "txreceipt_status": "1", + "input": "0xffd65a490000000000000000000000000000000000000000000000000000000000000000", + "contractAddress": "", + "cumulativeGasUsed": "4389002", + "gasUsed": "20165", + "confirmations": "6415347", + "methodId": "0xffd65a49", + "functionName": "setUGOVPerBlock(uint256 _uGOVPerBlock)" + } +] \ No newline at end of file diff --git a/multiplier.py b/multiplier.py new file mode 100644 index 0000000..2f2736c --- /dev/null +++ b/multiplier.py @@ -0,0 +1,10 @@ +from pprint import pprint +import math + +def main(): + for d in range(1, 208): + + pprint(1 + 0.001 * math.sqrt(d**3) ) + +if __name__ == '__main__': + main() diff --git a/orig.sol b/orig.sol new file mode 100644 index 0000000..4f1ce29 --- /dev/null +++ b/orig.sol @@ -0,0 +1,443 @@ +commit ddc5c1b7624f8390594c6c9855f69763f6501289 +Author: Benjamin +Date: Tue Jul 27 18:33:31 2021 +0200 + + feat(v2) migration test for lprewards correct tracking + +diff --git a/contracts/MasterChefOriginal.sol b/contracts/MasterChefOriginal.sol +index 5c30329..b833519 100644 +--- a/contracts/MasterChefOriginal.sol ++++ b/contracts/MasterChefOriginal.sol +@@ -79,7 +79,7 @@ contract MasterChefOriginal is Ownable { + uint256 _ubqPerBlock, + uint256 _startBlock, + uint256 _bonusEndBlock +- ) public { ++ ) { + manager = UbiquityAlgorithmicDollarManager(_manager); + ubqPerBlock = _ubqPerBlock; + bonusEndBlock = _bonusEndBlock; + +commit 37af40dcf0170dfc168c56e8db61bbce646e578a +Author: Benjamin +Date: Fri Jul 23 16:36:28 2021 +0200 + + fix(lint) solhint + +diff --git a/contracts/MasterChefOriginal.sol b/contracts/MasterChefOriginal.sol +index eeb42c1..5c30329 100644 +--- a/contracts/MasterChefOriginal.sol ++++ b/contracts/MasterChefOriginal.sol +@@ -35,7 +35,8 @@ contract MasterChefOriginal is Ownable { + // Info of each pool. + struct PoolInfo { + IERC20 lpToken; // Address of LP token contract. +- uint256 allocPoint; // How many allocation points assigned to this pool. UBQ to distribute per block. ++ // How many allocation points assigned to this pool. UBQ to distribute per block. ++ uint256 allocPoint; + uint256 lastRewardBlock; // Last block number that UBQs distribution occurs. + uint256 accUbqPerShare; // Accumulated UBQs per share, times 1e12. See below. + } +@@ -102,6 +103,32 @@ contract MasterChefOriginal is Ownable { + return poolInfo.length; + } + ++ // View function to see pending UBQs on frontend. ++ function pendingUBQ(uint256 _pid, address _user) ++ external ++ view ++ returns (uint256) ++ { ++ PoolInfo storage pool = poolInfo[_pid]; ++ UserInfo storage user = userInfo[_pid][_user]; ++ uint256 accUbqPerShare = pool.accUbqPerShare; ++ uint256 lpSupply = pool.lpToken.balanceOf(address(this)); ++ if (block.number > pool.lastRewardBlock && lpSupply != 0) { ++ uint256 multiplier = getMultiplier( ++ pool.lastRewardBlock, ++ block.number ++ ); ++ ++ uint256 ubqReward = (multiplier * ++ (ubqPerBlock) * ++ (pool.allocPoint)) / (totalAllocPoint); ++ accUbqPerShare = ++ accUbqPerShare + ++ ((ubqReward * (1e12)) / (lpSupply)); ++ } ++ return ((user.amount * accUbqPerShare) / 1e12) - user.rewardDebt; ++ } ++ + // Add a new lp to the pool. Can only be called by the owner. + // XXX DO NOT add the same LP token more than once. Rewards will be messed up if you do. + function add( +@@ -142,49 +169,6 @@ contract MasterChefOriginal is Ownable { + poolInfo[_pid].allocPoint = _allocPoint; + } + +- // Return reward multiplier over the given _from to _to block. +- function getMultiplier(uint256 _from, uint256 _to) +- public +- view +- returns (uint256) +- { +- if (_to <= bonusEndBlock) { +- return (_to - _from) * BONUS_MULTIPLIER; +- } else if (_from >= bonusEndBlock) { +- return _to - _from; +- } else { +- return +- ((bonusEndBlock - _from) * BONUS_MULTIPLIER) + +- (_to - bonusEndBlock); +- } +- } +- +- // View function to see pending UBQs on frontend. +- function pendingUBQ(uint256 _pid, address _user) +- external +- view +- returns (uint256) +- { +- PoolInfo storage pool = poolInfo[_pid]; +- UserInfo storage user = userInfo[_pid][_user]; +- uint256 accUbqPerShare = pool.accUbqPerShare; +- uint256 lpSupply = pool.lpToken.balanceOf(address(this)); +- if (block.number > pool.lastRewardBlock && lpSupply != 0) { +- uint256 multiplier = getMultiplier( +- pool.lastRewardBlock, +- block.number +- ); +- +- uint256 ubqReward = (multiplier * +- (ubqPerBlock) * +- (pool.allocPoint)) / (totalAllocPoint); +- accUbqPerShare = +- accUbqPerShare + +- ((ubqReward * (1e12)) / (lpSupply)); +- } +- return ((user.amount * accUbqPerShare) / 1e12) - user.rewardDebt; +- } +- + // Update reward vairables for all pools. Be careful of gas spending! + function massUpdatePools() public { + uint256 length = poolInfo.length; +@@ -269,6 +253,23 @@ contract MasterChefOriginal is Ownable { + user.rewardDebt = 0; + } + ++ // Return reward multiplier over the given _from to _to block. ++ function getMultiplier(uint256 _from, uint256 _to) ++ public ++ view ++ returns (uint256) ++ { ++ if (_to <= bonusEndBlock) { ++ return (_to - _from) * BONUS_MULTIPLIER; ++ } else if (_from >= bonusEndBlock) { ++ return _to - _from; ++ } else { ++ return ++ ((bonusEndBlock - _from) * BONUS_MULTIPLIER) + ++ (_to - bonusEndBlock); ++ } ++ } ++ + // Safe uGOV transfer function, just in case if rounding + // error causes pool to not have enough uGOVs. + function _safeUGOVTransfer(address _to, uint256 _amount) internal { + +commit 754e74cb1ab23bf9885091160826cef6c55a9ca4 +Author: Benjamin +Date: Thu Jul 22 16:30:26 2021 +0200 + + feat(incentives) adapt masterchef original + +diff --git a/contracts/MasterChefOriginal.sol b/contracts/MasterChefOriginal.sol +new file mode 100644 +index 0000000..eeb42c1 +--- /dev/null ++++ b/contracts/MasterChefOriginal.sol +@@ -0,0 +1,283 @@ ++// SPDX-License-Identifier: MIT ++pragma solidity 0.8.3; ++ ++import "./interfaces/IERC20Ubiquity.sol"; ++import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; ++import "@openzeppelin/contracts/access/Ownable.sol"; ++import "./UbiquityAlgorithmicDollarManager.sol"; ++ ++// MasterChef is the master of UBQ. He can make UBQ and he is a fair guy. ++// ++// Note that it's ownable and the owner wields tremendous power. The ownership ++// will be transferred to a governance smart contract once UBQ is sufficiently ++// distributed and the community can show to govern itself. ++// ++// Have fun reading it. Hopefully it's bug-free. God bless. ++contract MasterChefOriginal is Ownable { ++ using SafeERC20 for IERC20Ubiquity; ++ using SafeERC20 for IERC20; ++ // Info of each user. ++ struct UserInfo { ++ uint256 amount; // How many LP tokens the user has provided. ++ uint256 rewardDebt; // Reward debt. See explanation below. ++ // ++ // We do some fancy math here. Basically, any point in time, the amount of UBQs ++ // entitled to a user but is pending to be distributed is: ++ // ++ // pending reward = (user.amount * pool.accUbqPerShare) - user.rewardDebt ++ // ++ // Whenever a user deposits or withdraws LP tokens to a pool. Here's what happens: ++ // 1. The pool's `accUbqPerShare` (and `lastRewardBlock`) gets updated. ++ // 2. User receives the pending reward sent to his/her address. ++ // 3. User's `amount` gets updated. ++ // 4. User's `rewardDebt` gets updated. ++ } ++ // Info of each pool. ++ struct PoolInfo { ++ IERC20 lpToken; // Address of LP token contract. ++ uint256 allocPoint; // How many allocation points assigned to this pool. UBQ to distribute per block. ++ uint256 lastRewardBlock; // Last block number that UBQs distribution occurs. ++ uint256 accUbqPerShare; // Accumulated UBQs per share, times 1e12. See below. ++ } ++ // Ubiquity Manager ++ UbiquityAlgorithmicDollarManager public manager; ++ // Block number when bonus UBQ period ends. ++ uint256 public bonusEndBlock; ++ // UBQ tokens created per block. ++ uint256 public ubqPerBlock; ++ // Bonus muliplier for early ubq makers. ++ uint256 public constant BONUS_MULTIPLIER = 10; ++ uint256 public uGOVDivider; ++ // Info of each pool. ++ PoolInfo[] public poolInfo; ++ // Info of each user that stakes LP tokens. ++ mapping(uint256 => mapping(address => UserInfo)) public userInfo; ++ // Total allocation poitns. Must be the sum of all allocation points in all pools. ++ uint256 public totalAllocPoint = 0; ++ // The block number when UBQ mining starts. ++ uint256 public startBlock; ++ event Deposit(address indexed user, uint256 indexed pid, uint256 amount); ++ event Withdraw(address indexed user, uint256 indexed pid, uint256 amount); ++ event EmergencyWithdraw( ++ address indexed user, ++ uint256 indexed pid, ++ uint256 amount ++ ); ++ ++ // ----------- Modifiers ----------- ++ modifier onlyTokenManager() { ++ require( ++ manager.hasRole(manager.UBQ_TOKEN_MANAGER_ROLE(), msg.sender), ++ "MasterChef: not UBQ manager" ++ ); ++ _; ++ } ++ ++ constructor( ++ UbiquityAlgorithmicDollarManager _manager, ++ uint256 _ubqPerBlock, ++ uint256 _startBlock, ++ uint256 _bonusEndBlock ++ ) public { ++ manager = UbiquityAlgorithmicDollarManager(_manager); ++ ubqPerBlock = _ubqPerBlock; ++ bonusEndBlock = _bonusEndBlock; ++ startBlock = _startBlock; ++ uGOVDivider = 5; // 100 / 5 = 20% extra minted ugov for treasury ++ } ++ ++ function setUBQPerBlock(uint256 _ubqPerBlock) external onlyTokenManager { ++ ubqPerBlock = _ubqPerBlock; ++ } ++ ++ // the bigger uGOVDivider is the less extra Ugov will be minted for the treasury ++ function setUGOVShareForTreasury(uint256 _uGOVDivider) ++ external ++ onlyTokenManager ++ { ++ uGOVDivider = _uGOVDivider; ++ } ++ ++ function poolLength() external view returns (uint256) { ++ return poolInfo.length; ++ } ++ ++ // Add a new lp to the pool. Can only be called by the owner. ++ // XXX DO NOT add the same LP token more than once. Rewards will be messed up if you do. ++ function add( ++ uint256 _allocPoint, ++ IERC20 _lpToken, ++ bool _withUpdate ++ ) public onlyOwner { ++ if (_withUpdate) { ++ massUpdatePools(); ++ } ++ uint256 lastRewardBlock = block.number > startBlock ++ ? block.number ++ : startBlock; ++ totalAllocPoint = totalAllocPoint + _allocPoint; ++ poolInfo.push( ++ PoolInfo({ ++ lpToken: _lpToken, ++ allocPoint: _allocPoint, ++ lastRewardBlock: lastRewardBlock, ++ accUbqPerShare: 0 ++ }) ++ ); ++ } ++ ++ // Update the given pool's UBQ allocation point. Can only be called by the owner. ++ function set( ++ uint256 _pid, ++ uint256 _allocPoint, ++ bool _withUpdate ++ ) public onlyOwner { ++ if (_withUpdate) { ++ massUpdatePools(); ++ } ++ totalAllocPoint = ++ totalAllocPoint - ++ poolInfo[_pid].allocPoint + ++ _allocPoint; ++ poolInfo[_pid].allocPoint = _allocPoint; ++ } ++ ++ // Return reward multiplier over the given _from to _to block. ++ function getMultiplier(uint256 _from, uint256 _to) ++ public ++ view ++ returns (uint256) ++ { ++ if (_to <= bonusEndBlock) { ++ return (_to - _from) * BONUS_MULTIPLIER; ++ } else if (_from >= bonusEndBlock) { ++ return _to - _from; ++ } else { ++ return ++ ((bonusEndBlock - _from) * BONUS_MULTIPLIER) + ++ (_to - bonusEndBlock); ++ } ++ } ++ ++ // View function to see pending UBQs on frontend. ++ function pendingUBQ(uint256 _pid, address _user) ++ external ++ view ++ returns (uint256) ++ { ++ PoolInfo storage pool = poolInfo[_pid]; ++ UserInfo storage user = userInfo[_pid][_user]; ++ uint256 accUbqPerShare = pool.accUbqPerShare; ++ uint256 lpSupply = pool.lpToken.balanceOf(address(this)); ++ if (block.number > pool.lastRewardBlock && lpSupply != 0) { ++ uint256 multiplier = getMultiplier( ++ pool.lastRewardBlock, ++ block.number ++ ); ++ ++ uint256 ubqReward = (multiplier * ++ (ubqPerBlock) * ++ (pool.allocPoint)) / (totalAllocPoint); ++ accUbqPerShare = ++ accUbqPerShare + ++ ((ubqReward * (1e12)) / (lpSupply)); ++ } ++ return ((user.amount * accUbqPerShare) / 1e12) - user.rewardDebt; ++ } ++ ++ // Update reward vairables for all pools. Be careful of gas spending! ++ function massUpdatePools() public { ++ uint256 length = poolInfo.length; ++ for (uint256 pid = 0; pid < length; ++pid) { ++ updatePool(pid); ++ } ++ } ++ ++ // Update reward variables of the given pool to be up-to-date. ++ function updatePool(uint256 _pid) public { ++ PoolInfo storage pool = poolInfo[_pid]; ++ if (block.number <= pool.lastRewardBlock) { ++ return; ++ } ++ uint256 lpSupply = pool.lpToken.balanceOf(address(this)); ++ if (lpSupply == 0) { ++ pool.lastRewardBlock = block.number; ++ return; ++ } ++ uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); ++ uint256 ubqReward = (multiplier * ubqPerBlock * pool.allocPoint) / ++ totalAllocPoint; ++ ++ // mint another x% for the treasury ++ IERC20Ubiquity(manager.governanceTokenAddress()).mint( ++ manager.treasuryAddress(), ++ ubqReward / uGOVDivider ++ ); ++ IERC20Ubiquity(manager.governanceTokenAddress()).mint( ++ address(this), ++ ubqReward ++ ); ++ ++ pool.accUbqPerShare = ++ pool.accUbqPerShare + ++ ((ubqReward * 1e12) / lpSupply); ++ pool.lastRewardBlock = block.number; ++ } ++ ++ // Deposit LP tokens to MasterChef for UBQ allocation. ++ function deposit(uint256 _pid, uint256 _amount) public { ++ PoolInfo storage pool = poolInfo[_pid]; ++ UserInfo storage user = userInfo[_pid][msg.sender]; ++ updatePool(_pid); ++ if (user.amount > 0) { ++ uint256 pending = ((user.amount * pool.accUbqPerShare) / 1e12) - ++ user.rewardDebt; ++ _safeUGOVTransfer(msg.sender, pending); ++ } ++ pool.lpToken.safeTransferFrom( ++ address(msg.sender), ++ address(this), ++ _amount ++ ); ++ user.amount = user.amount + _amount; ++ user.rewardDebt = (user.amount * pool.accUbqPerShare) / 1e12; ++ emit Deposit(msg.sender, _pid, _amount); ++ } ++ ++ // Withdraw LP tokens from MasterChef. ++ function withdraw(uint256 _pid, uint256 _amount) public { ++ PoolInfo storage pool = poolInfo[_pid]; ++ UserInfo storage user = userInfo[_pid][msg.sender]; ++ require(user.amount >= _amount, "withdraw: not good"); ++ updatePool(_pid); ++ uint256 pending = ((user.amount * pool.accUbqPerShare) / 1e12) - ++ user.rewardDebt; ++ _safeUGOVTransfer(msg.sender, pending); ++ user.amount = user.amount - _amount; ++ user.rewardDebt = (user.amount * pool.accUbqPerShare) / 1e12; ++ pool.lpToken.safeTransfer(address(msg.sender), _amount); ++ emit Withdraw(msg.sender, _pid, _amount); ++ } ++ ++ // Withdraw without caring about rewards. EMERGENCY ONLY. ++ function emergencyWithdraw(uint256 _pid) public { ++ PoolInfo storage pool = poolInfo[_pid]; ++ UserInfo storage user = userInfo[_pid][msg.sender]; ++ pool.lpToken.safeTransfer(address(msg.sender), user.amount); ++ emit EmergencyWithdraw(msg.sender, _pid, user.amount); ++ user.amount = 0; ++ user.rewardDebt = 0; ++ } ++ ++ // Safe uGOV transfer function, just in case if rounding ++ // error causes pool to not have enough uGOVs. ++ function _safeUGOVTransfer(address _to, uint256 _amount) internal { ++ IERC20Ubiquity uGOV = IERC20Ubiquity(manager.governanceTokenAddress()); ++ uint256 uGOVBal = uGOV.balanceOf(address(this)); ++ if (_amount > uGOVBal) { ++ uGOV.safeTransfer(_to, uGOVBal); ++ } else { ++ uGOV.safeTransfer(_to, _amount); ++ } ++ } ++} diff --git a/shares.py b/shares.py new file mode 100644 index 0000000..e8214db --- /dev/null +++ b/shares.py @@ -0,0 +1,36 @@ +import matplotlib.pyplot as plt +import json + + # Read the data from allResults.json file +with open('allResults5million.json', 'r') as file: + data = json.load(file) + +# Display the data to verify +data + +# Extracting data for visualization +addresses = [entry['address'] for entry in data] +blocks = [int(entry['block']) for entry in data if entry['bondId'] == 2] +sharesToCompensate = [int() for entry in data if entry['bondId'] == 2] + + +# print(sharesToCompensate) + +lastRewardDebt = [-1, -1, -1, -1, -1, -1] + +for entry in data: + if entry['currentLpRewardDebt'] != lastRewardDebt[entry['bondId'] - 1]: + lastRewardDebt[entry['bondId'] - 1] = entry['currentLpRewardDebt'] + print("Block", entry['block'], "bond", entry['bondId'], "lpRewardDebt", f"{float(entry['currentLpRewardDebt']) * 1e-18:18.18}", "Last reward @", entry['lastRewardBlock'], "LP reward to number of shares ratio", float(entry['currentLpRewardDebt']) / float(entry['currentNumberOfShares'])) + +# Create a bar chart +plt.figure(figsize=(10, 6)) +plt.bar(blocks, sharesToCompensate, color='skyblue') +plt.xlabel('Address') +plt.ylabel('Number of Shares to Compensate') +plt.title('Number of Shares to Compensate for Each Address') +plt.xticks(rotation=45) +plt.tight_layout() + +# Show the plot +plt.show() diff --git a/staking_simulation_1.txt b/staking_simulation_1.txt new file mode 100644 index 0000000..9f53450 --- /dev/null +++ b/staking_simulation_1.txt @@ -0,0 +1,216 @@ + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) diff --git a/staking_simulation_2.txt b/staking_simulation_2.txt new file mode 100644 index 0000000..ddeca21 --- /dev/null +++ b/staking_simulation_2.txt @@ -0,0 +1,16346 @@ + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13005143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13004839 +accuGOVPerShare 0.0 +Total number of bonds created 6 +total LP staked 139167.653238992273546036 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13005144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13004839 +accuGOVPerShare 0.0 +Total number of bonds created 6 +total LP staked 139167.653238992273546036 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13005145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13004839 +accuGOVPerShare 0.0 +Total number of bonds created 6 +total LP staked 139167.653238992273546036 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13005146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13004839 +accuGOVPerShare 0.0 +Total number of bonds created 6 +total LP staked 139167.653238992273546036 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13005147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13004839 +accuGOVPerShare 0.0 +Total number of bonds created 6 +total LP staked 139167.653238992273546036 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13005148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13004839 +accuGOVPerShare 0.0 +Total number of bonds created 6 +total LP staked 139167.653238992273546036 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13006143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13004839 +accuGOVPerShare 0.0 +Total number of bonds created 6 +total LP staked 139167.653238992273546036 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13006144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13004839 +accuGOVPerShare 0.0 +Total number of bonds created 6 +total LP staked 139167.653238992273546036 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13006145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13004839 +accuGOVPerShare 0.0 +Total number of bonds created 6 +total LP staked 139167.653238992273546036 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13006146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13004839 +accuGOVPerShare 0.0 +Total number of bonds created 6 +total LP staked 139167.653238992273546036 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13006147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13004839 +accuGOVPerShare 0.0 +Total number of bonds created 6 +total LP staked 139167.653238992273546036 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13006148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13004839 +accuGOVPerShare 0.0 +Total number of bonds created 6 +total LP staked 139167.653238992273546036 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13007143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13007055 +accuGOVPerShare 0.016219627008 +Total number of bonds created 8 +total LP staked 147126.762976454429092411 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13007144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13007055 +accuGOVPerShare 0.016219627008 +Total number of bonds created 8 +total LP staked 147126.762976454429092411 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13007145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13007055 +accuGOVPerShare 0.016219627008 +Total number of bonds created 8 +total LP staked 147126.762976454429092411 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13007146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13007055 +accuGOVPerShare 0.016219627008 +Total number of bonds created 8 +total LP staked 147126.762976454429092411 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13007147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13007055 +accuGOVPerShare 0.016219627008 +Total number of bonds created 8 +total LP staked 147126.762976454429092411 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13007148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13007055 +accuGOVPerShare 0.016219627008 +Total number of bonds created 8 +total LP staked 147126.762976454429092411 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13008143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13007394 +accuGOVPerShare 0.018545772944 +Total number of bonds created 10 +total LP staked 158067.119042227891123595 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13008144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13007394 +accuGOVPerShare 0.018545772944 +Total number of bonds created 10 +total LP staked 158067.119042227891123595 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13008145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13007394 +accuGOVPerShare 0.018545772944 +Total number of bonds created 10 +total LP staked 158067.119042227891123595 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13008146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13007394 +accuGOVPerShare 0.018545772944 +Total number of bonds created 10 +total LP staked 158067.119042227891123595 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13008147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13007394 +accuGOVPerShare 0.018545772944 +Total number of bonds created 10 +total LP staked 158067.119042227891123595 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13008148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13007394 +accuGOVPerShare 0.018545772944 +Total number of bonds created 10 +total LP staked 158067.119042227891123595 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13009143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13008782 +accuGOVPerShare 0.026529490198 +Total number of bonds created 12 +total LP staked 168368.569700747551057475 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13009144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13008782 +accuGOVPerShare 0.026529490198 +Total number of bonds created 12 +total LP staked 168368.569700747551057475 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13009145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13008782 +accuGOVPerShare 0.026529490198 +Total number of bonds created 12 +total LP staked 168368.569700747551057475 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13009146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13008782 +accuGOVPerShare 0.026529490198 +Total number of bonds created 12 +total LP staked 168368.569700747551057475 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13009147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13008782 +accuGOVPerShare 0.026529490198 +Total number of bonds created 12 +total LP staked 168368.569700747551057475 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13009148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13008782 +accuGOVPerShare 0.026529490198 +Total number of bonds created 12 +total LP staked 168368.569700747551057475 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13010143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13008782 +accuGOVPerShare 0.026529490198 +Total number of bonds created 12 +total LP staked 168368.569700747551057475 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13010144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13008782 +accuGOVPerShare 0.026529490198 +Total number of bonds created 12 +total LP staked 168368.569700747551057475 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13010145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13008782 +accuGOVPerShare 0.026529490198 +Total number of bonds created 12 +total LP staked 168368.569700747551057475 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13010146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13008782 +accuGOVPerShare 0.026529490198 +Total number of bonds created 12 +total LP staked 168368.569700747551057475 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13010147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13008782 +accuGOVPerShare 0.026529490198 +Total number of bonds created 12 +total LP staked 168368.569700747551057475 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13010148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13008782 +accuGOVPerShare 0.026529490198 +Total number of bonds created 12 +total LP staked 168368.569700747551057475 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13011143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13008782 +accuGOVPerShare 0.026529490198 +Total number of bonds created 12 +total LP staked 168368.569700747551057475 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13011144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13008782 +accuGOVPerShare 0.026529490198 +Total number of bonds created 12 +total LP staked 168368.569700747551057475 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13011145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13008782 +accuGOVPerShare 0.026529490198 +Total number of bonds created 12 +total LP staked 168368.569700747551057475 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13011146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13008782 +accuGOVPerShare 0.026529490198 +Total number of bonds created 12 +total LP staked 168368.569700747551057475 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13011147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13008782 +accuGOVPerShare 0.026529490198 +Total number of bonds created 12 +total LP staked 168368.569700747551057475 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13011148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13008782 +accuGOVPerShare 0.026529490198 +Total number of bonds created 12 +total LP staked 168368.569700747551057475 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13012143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13011873 +accuGOVPerShare 0.043445740448 +Total number of bonds created 13 +total LP staked 170852.419700747551057475 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13012144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13011873 +accuGOVPerShare 0.043445740448 +Total number of bonds created 13 +total LP staked 170852.419700747551057475 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13012145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13011873 +accuGOVPerShare 0.043445740448 +Total number of bonds created 13 +total LP staked 170852.419700747551057475 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13012146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13011873 +accuGOVPerShare 0.043445740448 +Total number of bonds created 13 +total LP staked 170852.419700747551057475 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13012147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13011873 +accuGOVPerShare 0.043445740448 +Total number of bonds created 13 +total LP staked 170852.419700747551057475 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13012148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13011873 +accuGOVPerShare 0.043445740448 +Total number of bonds created 13 +total LP staked 170852.419700747551057475 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13013143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13012246 +accuGOVPerShare 0.045455617754 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13013144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13012246 +accuGOVPerShare 0.045455617754 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13013145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13012246 +accuGOVPerShare 0.045455617754 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13013146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13012246 +accuGOVPerShare 0.045455617754 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13013147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13012246 +accuGOVPerShare 0.045455617754 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13013148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13012246 +accuGOVPerShare 0.045455617754 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13014143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13012246 +accuGOVPerShare 0.045455617754 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13014144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13012246 +accuGOVPerShare 0.045455617754 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13014145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13012246 +accuGOVPerShare 0.045455617754 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13014146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13012246 +accuGOVPerShare 0.045455617754 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13014147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13012246 +accuGOVPerShare 0.045455617754 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13014148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13012246 +accuGOVPerShare 0.045455617754 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13015143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13015144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13015145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13015146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13015147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13015148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13016143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13016144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13016145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13016146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13016147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13016148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13017143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13017144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13017145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13017146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13017147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13017148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13018143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13018144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13018145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13018146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13018147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13018148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13019143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13019144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13019145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13019146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13019147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13019148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13014492 +accuGOVPerShare 0.05745674608 +Total number of bonds created 14 +total LP staked 172429.176779374779926654 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13020143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13019897 +accuGOVPerShare 0.086324330811 +Total number of bonds created 16 +total LP staked 175092.366376521171229517 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13020144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13019897 +accuGOVPerShare 0.086324330811 +Total number of bonds created 16 +total LP staked 175092.366376521171229517 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13020145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13019897 +accuGOVPerShare 0.086324330811 +Total number of bonds created 16 +total LP staked 175092.366376521171229517 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13020146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13019897 +accuGOVPerShare 0.086324330811 +Total number of bonds created 16 +total LP staked 175092.366376521171229517 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13020147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13019897 +accuGOVPerShare 0.086324330811 +Total number of bonds created 16 +total LP staked 175092.366376521171229517 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13020148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13019897 +accuGOVPerShare 0.086324330811 +Total number of bonds created 16 +total LP staked 175092.366376521171229517 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13021143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13019897 +accuGOVPerShare 0.086324330811 +Total number of bonds created 16 +total LP staked 175092.366376521171229517 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13021144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13019897 +accuGOVPerShare 0.086324330811 +Total number of bonds created 16 +total LP staked 175092.366376521171229517 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13021145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13019897 +accuGOVPerShare 0.086324330811 +Total number of bonds created 16 +total LP staked 175092.366376521171229517 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13021146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13019897 +accuGOVPerShare 0.086324330811 +Total number of bonds created 16 +total LP staked 175092.366376521171229517 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13021147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13019897 +accuGOVPerShare 0.086324330811 +Total number of bonds created 16 +total LP staked 175092.366376521171229517 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13021148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13019897 +accuGOVPerShare 0.086324330811 +Total number of bonds created 16 +total LP staked 175092.366376521171229517 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13022143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13019897 +accuGOVPerShare 0.086324330811 +Total number of bonds created 16 +total LP staked 175092.366376521171229517 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13022144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13019897 +accuGOVPerShare 0.086324330811 +Total number of bonds created 16 +total LP staked 175092.366376521171229517 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13022145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13019897 +accuGOVPerShare 0.086324330811 +Total number of bonds created 16 +total LP staked 175092.366376521171229517 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13022146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13019897 +accuGOVPerShare 0.086324330811 +Total number of bonds created 16 +total LP staked 175092.366376521171229517 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13022147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13019897 +accuGOVPerShare 0.086324330811 +Total number of bonds created 16 +total LP staked 175092.366376521171229517 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13022148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13019897 +accuGOVPerShare 0.086324330811 +Total number of bonds created 16 +total LP staked 175092.366376521171229517 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13023143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13022786 +accuGOVPerShare 0.101337463993 +Total number of bonds created 17 +total LP staked 176971.04080206174304406 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13023144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13022786 +accuGOVPerShare 0.101337463993 +Total number of bonds created 17 +total LP staked 176971.04080206174304406 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13023145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13022786 +accuGOVPerShare 0.101337463993 +Total number of bonds created 17 +total LP staked 176971.04080206174304406 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13023146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13022786 +accuGOVPerShare 0.101337463993 +Total number of bonds created 17 +total LP staked 176971.04080206174304406 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13023147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13022786 +accuGOVPerShare 0.101337463993 +Total number of bonds created 17 +total LP staked 176971.04080206174304406 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13023148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13022786 +accuGOVPerShare 0.101337463993 +Total number of bonds created 17 +total LP staked 176971.04080206174304406 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13024143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13023569 +accuGOVPerShare 0.105229968026 +Total number of bonds created 19 +total LP staked 180234.998555799039192682 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13024144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13023569 +accuGOVPerShare 0.105229968026 +Total number of bonds created 19 +total LP staked 180234.998555799039192682 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13024145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13023569 +accuGOVPerShare 0.105229968026 +Total number of bonds created 19 +total LP staked 180234.998555799039192682 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13024146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13023569 +accuGOVPerShare 0.105229968026 +Total number of bonds created 19 +total LP staked 180234.998555799039192682 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13024147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13023569 +accuGOVPerShare 0.105229968026 +Total number of bonds created 19 +total LP staked 180234.998555799039192682 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13024148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13023569 +accuGOVPerShare 0.105229968026 +Total number of bonds created 19 +total LP staked 180234.998555799039192682 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13025143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13023569 +accuGOVPerShare 0.105229968026 +Total number of bonds created 19 +total LP staked 180234.998555799039192682 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13025144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13023569 +accuGOVPerShare 0.105229968026 +Total number of bonds created 19 +total LP staked 180234.998555799039192682 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13025145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13023569 +accuGOVPerShare 0.105229968026 +Total number of bonds created 19 +total LP staked 180234.998555799039192682 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13025146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13023569 +accuGOVPerShare 0.105229968026 +Total number of bonds created 19 +total LP staked 180234.998555799039192682 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13025147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13023569 +accuGOVPerShare 0.105229968026 +Total number of bonds created 19 +total LP staked 180234.998555799039192682 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13025148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13023569 +accuGOVPerShare 0.105229968026 +Total number of bonds created 19 +total LP staked 180234.998555799039192682 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13026143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13023569 +accuGOVPerShare 0.105229968026 +Total number of bonds created 19 +total LP staked 180234.998555799039192682 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13026144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13023569 +accuGOVPerShare 0.105229968026 +Total number of bonds created 19 +total LP staked 180234.998555799039192682 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13026145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13023569 +accuGOVPerShare 0.105229968026 +Total number of bonds created 19 +total LP staked 180234.998555799039192682 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13026146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13023569 +accuGOVPerShare 0.105229968026 +Total number of bonds created 19 +total LP staked 180234.998555799039192682 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13026147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13023569 +accuGOVPerShare 0.105229968026 +Total number of bonds created 19 +total LP staked 180234.998555799039192682 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13026148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13023569 +accuGOVPerShare 0.105229968026 +Total number of bonds created 19 +total LP staked 180234.998555799039192682 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13027143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13027144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13027145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13027146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13027147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13027148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13028143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13028144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13028145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13028146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13028147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13028148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13029143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13029144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13029145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13029146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13029147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13029148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13030143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13030144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13030145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13030146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13030147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13030148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13031143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13031144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13031145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13031146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13031147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13031148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13032143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13032144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13032145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13032146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13032147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13032148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13033143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13033144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13033145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13033146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13033147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13033148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13027009 +accuGOVPerShare 0.121639358163 +Total number of bonds created 20 +total LP staked 215194.770258742317828586 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13034143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13033776 +accuGOVPerShare 0.149394155025 +Total number of bonds created 21 +total LP staked 224574.776694995018852196 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13034144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13033776 +accuGOVPerShare 0.149394155025 +Total number of bonds created 21 +total LP staked 224574.776694995018852196 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13034145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13033776 +accuGOVPerShare 0.149394155025 +Total number of bonds created 21 +total LP staked 224574.776694995018852196 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13034146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13033776 +accuGOVPerShare 0.149394155025 +Total number of bonds created 21 +total LP staked 224574.776694995018852196 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13034147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13033776 +accuGOVPerShare 0.149394155025 +Total number of bonds created 21 +total LP staked 224574.776694995018852196 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13034148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13033776 +accuGOVPerShare 0.149394155025 +Total number of bonds created 21 +total LP staked 224574.776694995018852196 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13035143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13033776 +accuGOVPerShare 0.149394155025 +Total number of bonds created 21 +total LP staked 224574.776694995018852196 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13035144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13033776 +accuGOVPerShare 0.149394155025 +Total number of bonds created 21 +total LP staked 224574.776694995018852196 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13035145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13033776 +accuGOVPerShare 0.149394155025 +Total number of bonds created 21 +total LP staked 224574.776694995018852196 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13035146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13033776 +accuGOVPerShare 0.149394155025 +Total number of bonds created 21 +total LP staked 224574.776694995018852196 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13035147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13033776 +accuGOVPerShare 0.149394155025 +Total number of bonds created 21 +total LP staked 224574.776694995018852196 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13035148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13033776 +accuGOVPerShare 0.149394155025 +Total number of bonds created 21 +total LP staked 224574.776694995018852196 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13036143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13036060 +accuGOVPerShare 0.158420711442 +Total number of bonds created 22 +total LP staked 228238.776694995018852196 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13036144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13036060 +accuGOVPerShare 0.158420711442 +Total number of bonds created 22 +total LP staked 228238.776694995018852196 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13036145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13036060 +accuGOVPerShare 0.158420711442 +Total number of bonds created 22 +total LP staked 228238.776694995018852196 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13036146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13036060 +accuGOVPerShare 0.158420711442 +Total number of bonds created 22 +total LP staked 228238.776694995018852196 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13036147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13036060 +accuGOVPerShare 0.158420711442 +Total number of bonds created 22 +total LP staked 228238.776694995018852196 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13036148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13036060 +accuGOVPerShare 0.158420711442 +Total number of bonds created 22 +total LP staked 228238.776694995018852196 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13037143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13036060 +accuGOVPerShare 0.158420711442 +Total number of bonds created 22 +total LP staked 228238.776694995018852196 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13037144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13036060 +accuGOVPerShare 0.158420711442 +Total number of bonds created 22 +total LP staked 228238.776694995018852196 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13037145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13036060 +accuGOVPerShare 0.158420711442 +Total number of bonds created 22 +total LP staked 228238.776694995018852196 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13037146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13036060 +accuGOVPerShare 0.158420711442 +Total number of bonds created 22 +total LP staked 228238.776694995018852196 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13037147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13036060 +accuGOVPerShare 0.158420711442 +Total number of bonds created 22 +total LP staked 228238.776694995018852196 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13037148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13036060 +accuGOVPerShare 0.158420711442 +Total number of bonds created 22 +total LP staked 228238.776694995018852196 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13038143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13037958 +accuGOVPerShare 0.165817246101 +Total number of bonds created 23 +total LP staked 229349.827683602822465111 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13038144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13037958 +accuGOVPerShare 0.165817246101 +Total number of bonds created 23 +total LP staked 229349.827683602822465111 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13038145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13037958 +accuGOVPerShare 0.165817246101 +Total number of bonds created 23 +total LP staked 229349.827683602822465111 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13038146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13037958 +accuGOVPerShare 0.165817246101 +Total number of bonds created 23 +total LP staked 229349.827683602822465111 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13038147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13037958 +accuGOVPerShare 0.165817246101 +Total number of bonds created 23 +total LP staked 229349.827683602822465111 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13038148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13037958 +accuGOVPerShare 0.165817246101 +Total number of bonds created 23 +total LP staked 229349.827683602822465111 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13039143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13039144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13039145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13039146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13039147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13039148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13040143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13040144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13040145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13040146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13040147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13040148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13041143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13041144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13041145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13041146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13041147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13041148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13042143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13042144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13042145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13042146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13042147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13042148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13043143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13043144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13043145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13043146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13043147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13043148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13044143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13044144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13044145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13044146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13044147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13044148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13045143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13045144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13045145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13045146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13045147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13045148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13046143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13046144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13046145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13046146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13046147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13046148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13047143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13047144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13047145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13047146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13047147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13047148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13048143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13048144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13048145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13048146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13048147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13048148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13049143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13049144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13049145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13049146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13049147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13049148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13050143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13050144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13050145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13050146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13050147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13050148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13051143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13051144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13051145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13051146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13051147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13051148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13052143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13052144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13052145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13052146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13052147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13052148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13038997 +accuGOVPerShare 0.169849090322 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13053143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13052300 +accuGOVPerShare 0.220749207903 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13053144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13052300 +accuGOVPerShare 0.220749207903 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13053145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13052300 +accuGOVPerShare 0.220749207903 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13053146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13052300 +accuGOVPerShare 0.220749207903 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13053147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13052300 +accuGOVPerShare 0.220749207903 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13053148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13052300 +accuGOVPerShare 0.220749207903 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13054143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13052300 +accuGOVPerShare 0.220749207903 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13054144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13052300 +accuGOVPerShare 0.220749207903 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13054145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13052300 +accuGOVPerShare 0.220749207903 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13054146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13052300 +accuGOVPerShare 0.220749207903 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13054147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13052300 +accuGOVPerShare 0.220749207903 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13054148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13052300 +accuGOVPerShare 0.220749207903 +Total number of bonds created 24 +total LP staked 233046.303945758087583193 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13055143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13054749 +accuGOVPerShare 0.230119604652 +Total number of bonds created 25 +total LP staked 233936.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13055144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13054749 +accuGOVPerShare 0.230119604652 +Total number of bonds created 25 +total LP staked 233936.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13055145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13054749 +accuGOVPerShare 0.230119604652 +Total number of bonds created 25 +total LP staked 233936.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13055146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13054749 +accuGOVPerShare 0.230119604652 +Total number of bonds created 25 +total LP staked 233936.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13055147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 537280361095585255111 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13054749 +accuGOVPerShare 0.230119604652 +Total number of bonds created 25 +total LP staked 233936.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13055148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13054749 +accuGOVPerShare 0.230119604652 +Total number of bonds created 25 +total LP staked 233936.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13056143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13056144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13056145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13056146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13056147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13056148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13057143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13057144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13057145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13057146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13057147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13057148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13058143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13058144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13058145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13058146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13058147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13058148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13059143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13059144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13059145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13059146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13059147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13059148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13060143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13060144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13060145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13060146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13060147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13060148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13061143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13061144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13061145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13061146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13061147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13061148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13062143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13062144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13062145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13062146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13062147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13062148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13063143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13063144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13063145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13063146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13063147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13063148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13064143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13064144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13064145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13064146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13064147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13064148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1025777347479164445 1.025777347479164445 +lastRewardBlock 13055932 +accuGOVPerShare 0.234414428302 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13065143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13065144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13065145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13065146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13065147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13065148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13066143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13066144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13066145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13066146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13066147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13066148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13067143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13067144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13067145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13067146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13067147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13067148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13068143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13068144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13068145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13068146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13068147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13068148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13069143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13069144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13069145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13069146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13069147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13069148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13070143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13070144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13070145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13070146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13070147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13070148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13071143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13071144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13071145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13071146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13071147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13071148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13072143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13072144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13072145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13072146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13072147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13072148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13073143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13073144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13073145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13073146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13073147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13073148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13074143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13074144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13074145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13074146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13074147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13074148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13075143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13075144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13075145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13075146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13075147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13075148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13076143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13076144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 913368109395109831686 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13076145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13076146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13076147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13076148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1050760638898453741 1.050760638898453741 +lastRewardBlock 13064458 +accuGOVPerShare 0.264005037323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13077143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13076799 +accuGOVPerShare 0.307753450323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13077144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13076799 +accuGOVPerShare 0.307753450323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13077145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13076799 +accuGOVPerShare 0.307753450323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13077146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13076799 +accuGOVPerShare 0.307753450323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13077147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13076799 +accuGOVPerShare 0.307753450323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13077148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13076799 +accuGOVPerShare 0.307753450323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13078143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13076799 +accuGOVPerShare 0.307753450323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13078144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13076799 +accuGOVPerShare 0.307753450323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13078145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13076799 +accuGOVPerShare 0.307753450323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13078146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13076799 +accuGOVPerShare 0.307753450323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13078147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13076799 +accuGOVPerShare 0.307753450323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13078148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13076799 +accuGOVPerShare 0.307753450323 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13079143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13078926 +accuGOVPerShare 0.315293590865 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13079144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13078926 +accuGOVPerShare 0.315293590865 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13079145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13078926 +accuGOVPerShare 0.315293590865 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13079146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13078926 +accuGOVPerShare 0.315293590865 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13079147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13078926 +accuGOVPerShare 0.315293590865 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13079148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13078926 +accuGOVPerShare 0.315293590865 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13080143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13078926 +accuGOVPerShare 0.315293590865 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13080144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13078926 +accuGOVPerShare 0.315293590865 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13080145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13078926 +accuGOVPerShare 0.315293590865 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13080146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13078926 +accuGOVPerShare 0.315293590865 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13080147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13078926 +accuGOVPerShare 0.315293590865 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13080148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13078926 +accuGOVPerShare 0.315293590865 +Total number of bonds created 26 +total LP staked 255659.643892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13081143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13080604 +accuGOVPerShare 0.321242042126 +Total number of bonds created 27 +total LP staked 256400.123892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13081144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13080604 +accuGOVPerShare 0.321242042126 +Total number of bonds created 27 +total LP staked 256400.123892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13081145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13080604 +accuGOVPerShare 0.321242042126 +Total number of bonds created 27 +total LP staked 256400.123892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13081146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13080604 +accuGOVPerShare 0.321242042126 +Total number of bonds created 27 +total LP staked 256400.123892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13081147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13080604 +accuGOVPerShare 0.321242042126 +Total number of bonds created 27 +total LP staked 256400.123892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13081148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13080604 +accuGOVPerShare 0.321242042126 +Total number of bonds created 27 +total LP staked 256400.123892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13082143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13080604 +accuGOVPerShare 0.321242042126 +Total number of bonds created 27 +total LP staked 256400.123892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13082144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13080604 +accuGOVPerShare 0.321242042126 +Total number of bonds created 27 +total LP staked 256400.123892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13082145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13080604 +accuGOVPerShare 0.321242042126 +Total number of bonds created 27 +total LP staked 256400.123892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13082146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13080604 +accuGOVPerShare 0.321242042126 +Total number of bonds created 27 +total LP staked 256400.123892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13082147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13080604 +accuGOVPerShare 0.321242042126 +Total number of bonds created 27 +total LP staked 256400.123892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13082148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13080604 +accuGOVPerShare 0.321242042126 +Total number of bonds created 27 +total LP staked 256400.123892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13083143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13080604 +accuGOVPerShare 0.321242042126 +Total number of bonds created 27 +total LP staked 256400.123892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13083144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13080604 +accuGOVPerShare 0.321242042126 +Total number of bonds created 27 +total LP staked 256400.123892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13083145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13080604 +accuGOVPerShare 0.321242042126 +Total number of bonds created 27 +total LP staked 256400.123892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13083146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13080604 +accuGOVPerShare 0.321242042126 +Total number of bonds created 27 +total LP staked 256400.123892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13083147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13080604 +accuGOVPerShare 0.321242042126 +Total number of bonds created 27 +total LP staked 256400.123892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13083148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13080604 +accuGOVPerShare 0.321242042126 +Total number of bonds created 27 +total LP staked 256400.123892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13084143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13084065 +accuGOVPerShare 0.333481201696 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13084144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13084065 +accuGOVPerShare 0.333481201696 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13084145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13084065 +accuGOVPerShare 0.333481201696 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13084146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13084065 +accuGOVPerShare 0.333481201696 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13084147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13084065 +accuGOVPerShare 0.333481201696 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13084148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13084065 +accuGOVPerShare 0.333481201696 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13085143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13084065 +accuGOVPerShare 0.333481201696 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13085144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13084065 +accuGOVPerShare 0.333481201696 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13085145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13084065 +accuGOVPerShare 0.333481201696 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13085146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13084065 +accuGOVPerShare 0.333481201696 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13085147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13084065 +accuGOVPerShare 0.333481201696 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13085148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13084065 +accuGOVPerShare 0.333481201696 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13086143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13084065 +accuGOVPerShare 0.333481201696 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13086144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13084065 +accuGOVPerShare 0.333481201696 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13086145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 611276273141238246941 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13084065 +accuGOVPerShare 0.333481201696 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13086146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13084065 +accuGOVPerShare 0.333481201696 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13086147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13084065 +accuGOVPerShare 0.333481201696 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13086148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13084065 +accuGOVPerShare 0.333481201696 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13087143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13087144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13087145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13087146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13087147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13087148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13088143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13088144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13088145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13088146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13088147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13088148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13089143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13089144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13089145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13089146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13089147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13089148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13090143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13090144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13090145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13090146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13090147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13090148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13091143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13091144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13091145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13091146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13091147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13091148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13092143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13092144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13092145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13092146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13092147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13092148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13093143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13093144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13093145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13093146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13093147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13093148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13094143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13094144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13094145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13094146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13094147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13094148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13095143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13095144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13095145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13095146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13095147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13095148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13086698 +accuGOVPerShare 0.342354456791 +Total number of bonds created 28 +total LP staked 271257.123892702242997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13096143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13095257 +accuGOVPerShare 0.37119843338 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13096144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13095257 +accuGOVPerShare 0.37119843338 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13096145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13095257 +accuGOVPerShare 0.37119843338 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13096146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13095257 +accuGOVPerShare 0.37119843338 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13096147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13095257 +accuGOVPerShare 0.37119843338 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13096148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13095257 +accuGOVPerShare 0.37119843338 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13097143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13095257 +accuGOVPerShare 0.37119843338 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13097144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13095257 +accuGOVPerShare 0.37119843338 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13097145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13095257 +accuGOVPerShare 0.37119843338 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13097146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13095257 +accuGOVPerShare 0.37119843338 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13097147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13095257 +accuGOVPerShare 0.37119843338 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13097148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13095257 +accuGOVPerShare 0.37119843338 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13098143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13098053 +accuGOVPerShare 0.377546868042 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13098144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13098053 +accuGOVPerShare 0.377546868042 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13098145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13098053 +accuGOVPerShare 0.377546868042 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13098146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13098053 +accuGOVPerShare 0.377546868042 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13098147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13098053 +accuGOVPerShare 0.377546868042 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13098148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13098053 +accuGOVPerShare 0.377546868042 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13099143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099022 +accuGOVPerShare 0.379747022973 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13099144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099022 +accuGOVPerShare 0.379747022973 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13099145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099022 +accuGOVPerShare 0.379747022973 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13099146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099022 +accuGOVPerShare 0.379747022973 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13099147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099022 +accuGOVPerShare 0.379747022973 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13099148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099022 +accuGOVPerShare 0.379747022973 +Total number of bonds created 29 +total LP staked 309813.019148464684997627 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13100143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13100144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13100145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13100146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13100147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13100148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13101143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13101144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13101145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13101146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13101147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13101148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13102143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13102144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13102145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13102146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13102147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13102148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13103143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13103144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13103145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13103146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13103147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13103148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13104143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13104144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13104145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13104146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13104147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13104148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13105143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13105144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13105145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13105146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13105147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13105148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13106143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13106144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13106145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13106146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13106147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13106148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13107143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13107144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13107145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13107146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13107147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13107148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13108143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13108144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13108145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13108146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13108147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13108148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13109143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13109144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13109145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13109146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13109147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13109148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13110143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13110144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13110145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13110146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13110147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13110148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13111143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13111144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13111145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13111146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13111147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13111148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13112143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13112144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13112145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13112146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13112147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13112148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13113143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13113144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13113145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13113146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13113147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13113148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13114143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13114144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13114145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13114146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13114147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13114148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13115143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13115144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13115145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13115146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13115147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13115148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13116143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13116144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13116145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13116146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13116147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13116148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13117143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13117144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13117145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13117146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13117147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 2192018818969529434116 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13117148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13099595 +accuGOVPerShare 0.381048043381 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13118143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13118144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13118145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13118146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13118147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13118148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13119143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13119144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13119145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13119146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13119147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13119148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13120143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13120144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13120145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13120146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13120147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13120148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13121143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13121144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13121145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13121146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13121147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13121148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13122143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13122144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13122145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13122146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13122147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13122148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13123143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13123144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13123145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13123146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13123147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13123148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13124143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13124144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13124145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13124146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13124147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13124148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13125143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13125144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13125145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13125146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13125147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13125148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13126143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13126144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13126145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13126146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13126147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13126148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13117583 +accuGOVPerShare 0.418024083584 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13127143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13127144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13127145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13127146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13127147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13127148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13128143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13128144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13128145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13128146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13128147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13128148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13129143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13129144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13129145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13129146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13129147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13129148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13130143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13130144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13130145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13130146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13130147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13130148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13131143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13131144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13131145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13131146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13131147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13131148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13132143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13132144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13132145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13132146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13132147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13132148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13133143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13133144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13133145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13133146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13133147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13133148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13134143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13134144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13134145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13134146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13134147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13134148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13135143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13135144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13135145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13135146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13135147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13135148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13136143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13136144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13136145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13136146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13136147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13136148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13126252 +accuGOVPerShare 0.435844035358 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13137143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13137144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13137145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13137146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13137147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13137148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13138143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13138144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13138145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13138146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13138147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13138148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13139143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13139144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13139145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13139146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13139147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13139148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13140143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13140144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13140145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13140146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13140147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13140148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13141143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13141144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13141145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13141146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13141147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13141148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13142143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13142144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13142145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13142146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13142147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13142148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13143143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13143144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13143145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13143146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13143147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13143148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13144143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13144144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13144145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13144146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13144147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13144148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13145143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13145144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13145145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13145146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13145147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13145148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13146143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13146144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13146145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13146146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13146147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13146148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13147143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13147144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13147145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13147146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13147147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13147148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13148143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13148144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13148145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13148146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13148147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13148148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13149143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13149144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13149145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13149146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13149147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13149148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13150143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13150144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13150145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13150146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13150147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13150148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13151143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13151144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13151145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13151146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13151147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13151148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13152143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13152144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13152145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13152146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13152147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13152148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13153143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13153144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13153145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13153146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13153147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13153148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13154143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13154144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13154145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13154146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13154147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13154148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13155143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13155144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13155145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13155146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13155147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13155148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13156143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13156144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13156145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13156146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13156147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13156148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13157143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13157144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13157145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13157146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13157147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13157148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13158143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13158144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13158145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13158146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13158147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13158148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13159143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13159144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13159145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13159146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13159147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13159148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13160143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13160144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13160145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13160146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13160147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13160148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13161143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13161144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13161145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13161146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13161147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13161148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13162143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13162144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13162145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13162146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13162147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13162148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13163143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13163144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13163145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13163146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13163147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13163148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13164143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13164144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13164145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13164146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13164147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13164148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13165143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13165144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13165145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13165146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13165147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13165148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13166143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13166144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13166145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13166146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13166147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13166148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13167143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13167144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13167145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13167146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13167147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13167148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13168143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13168144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13168145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13168146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13168147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13168148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13169143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13169144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13169145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13169146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13169147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13169148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13170143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13170144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13170145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13170146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13170147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13170148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13171143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13171144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13171145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13171146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13171147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13171148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13172143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13172144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13172145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13172146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13172147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13172148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13173143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13173144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13173145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13173146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13173147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13173148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13174143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13174144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13174145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13174146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13174147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13174148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13175143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13175144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13175145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13175146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13175147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13175148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13176143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13176144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13176145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13176146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13176147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13176148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13177143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13177144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13177145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13177146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13177147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13177148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13178143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13178144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13178145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13178146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13178147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13178148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13179143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13179144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13179145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13179146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13179147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13179148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13180143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13180144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13180145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13180146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13180147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13180148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13181143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13181144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13181145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13181146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13181147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13181148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13182143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13182144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13182145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13182146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13182147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13182148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1073265505700289109 1.073265505700289109 +lastRewardBlock 13136573 +accuGOVPerShare 0.457059829828 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13183143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13183144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13183145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13183146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13183147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13183148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13184143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13184144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13184145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13184146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13184147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13184148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13185143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13185144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13185145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13185146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13185147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13185148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13186143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13186144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13186145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13186146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13186147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13186148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13187143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13187144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13187145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13187146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13187147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13187148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13188143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13188144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13188145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13188146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13188147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 3908960146506483690804 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13188148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13182490 +accuGOVPerShare 0.552574001784 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13189143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13189144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13189145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13189146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13189147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13189148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13190143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13190144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13190145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13190146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13190147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13190148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13191143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13191144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13191145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13191146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13191147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13191148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13192143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13192144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13192145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13192146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13192147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13192148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13193143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13193144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13193145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13193146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13193147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13193148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13194143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13194144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13194145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13194146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13194147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13194148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13195143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13195144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13195145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13195146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13195147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13195148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13196143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13196144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13196145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13196146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13196147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13196148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13188621 +accuGOVPerShare 0.56532739134 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13197143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197130 +accuGOVPerShare 0.583027373681 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13197144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197130 +accuGOVPerShare 0.583027373681 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13197145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197130 +accuGOVPerShare 0.583027373681 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13197146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197130 +accuGOVPerShare 0.583027373681 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13197147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197130 +accuGOVPerShare 0.583027373681 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13197148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197130 +accuGOVPerShare 0.583027373681 +Total number of bonds created 30 +total LP staked 358985.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13198143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197161 +accuGOVPerShare 0.583091858279 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13198144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197161 +accuGOVPerShare 0.583091858279 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13198145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197161 +accuGOVPerShare 0.583091858279 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13198146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197161 +accuGOVPerShare 0.583091858279 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13198147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197161 +accuGOVPerShare 0.583091858279 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13198148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197161 +accuGOVPerShare 0.583091858279 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13199143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197161 +accuGOVPerShare 0.583091858279 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13199144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197161 +accuGOVPerShare 0.583091858279 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13199145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197161 +accuGOVPerShare 0.583091858279 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13199146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197161 +accuGOVPerShare 0.583091858279 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13199147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197161 +accuGOVPerShare 0.583091858279 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13199148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197161 +accuGOVPerShare 0.583091858279 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13200143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197161 +accuGOVPerShare 0.583091858279 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13200144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197161 +accuGOVPerShare 0.583091858279 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13200145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197161 +accuGOVPerShare 0.583091858279 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13200146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197161 +accuGOVPerShare 0.583091858279 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13200147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197161 +accuGOVPerShare 0.583091858279 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13200148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1086085359790950879 1.086085359790950879 +lastRewardBlock 13197161 +accuGOVPerShare 0.583091858279 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13201143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13201144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13201145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13201146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13201147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13201148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13202143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13202144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13202145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13202146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13202147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13202148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13203143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13203144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13203145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13203146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13203147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13203148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13204143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13204144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13204145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13204146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13204147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13204148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13205143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13205144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13205145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13205146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13205147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13205148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13206143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13206144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13206145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13206146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13206147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13206148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13207143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13207144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13207145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13207146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13207147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13207148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13208143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13208144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13208145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13208146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13208147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13208148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13209143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13209144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13209145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13209146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13209147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13209148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13210143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13210144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13210145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13210146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13210147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13210148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13211143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13211144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13211145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13211146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13211147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13211148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 2835009713754346408783 +uGOVmultiplier 1092296614193987711 1.092296614193987711 +lastRewardBlock 13200233 +accuGOVPerShare 0.589564083883 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13212143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1096483029545136514 1.096483029545136514 +lastRewardBlock 13211731 +accuGOVPerShare 0.613881423888 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13212144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1096483029545136514 1.096483029545136514 +lastRewardBlock 13211731 +accuGOVPerShare 0.613881423888 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13212145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1096483029545136514 1.096483029545136514 +lastRewardBlock 13211731 +accuGOVPerShare 0.613881423888 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:13212146 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,1480607760433248019987 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1480607760433248019987 326842990330674284517 +uGOVmultiplier 1096483029545136514 1.096483029545136514 +lastRewardBlock 13211731 +accuGOVPerShare 0.613881423888 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:13212147 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 5286399346970823737654 +uGOVmultiplier 1096483029545136514 1.096483029545136514 +lastRewardBlock 13211731 +accuGOVPerShare 0.613881423888 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:13212148 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 5519807094845145233151 +uGOVmultiplier 1096483029545136514 1.096483029545136514 +lastRewardBlock 13211731 +accuGOVPerShare 0.613881423888 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:13213143 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1096483029545136514 1.096483029545136514 +lastRewardBlock 13211731 +accuGOVPerShare 0.613881423888 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:13213144 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 22959601284585190976566 +uGOVmultiplier 1096483029545136514 1.096483029545136514 +lastRewardBlock 13211731 +accuGOVPerShare 0.613881423888 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:13213145 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 15316655704518634941888 +uGOVmultiplier 1096483029545136514 1.096483029545136514 +lastRewardBlock 13211731 +accuGOVPerShare 0.613881423888 +Total number of bonds created 30 +total LP staked 355321.31382587254026764 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 diff --git a/staking_simulation_every_1000_blocks.txt b/staking_simulation_every_1000_blocks.txt new file mode 100644 index 0000000..06002a6 --- /dev/null +++ b/staking_simulation_every_1000_blocks.txt @@ -0,0 +1,20558 @@ + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +** ERROR call revert exception (method="uGOVmultiplier()", errorArgs=null, errorName=null, errorSignature=null, reason=null, code=CALL_EXCEPTION, version=abi/5.4.0) + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15000003 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15000003 Last Reward Block 14862299 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15000005 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15000004 +accuGOVPerShare 4.344324726452 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15000005 Last Reward Block 15000004 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15000007 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15000006 +accuGOVPerShare 4.344327919195 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15000007 Last Reward Block 15000006 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 184526404702160871086491 184526.404702160871086491 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 553545752307109452705559 553545.752307109452705559 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15000009 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15000010 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15000008 +accuGOVPerShare 4.344331111938 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15000010 Last Reward Block 15000008 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15000012 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15000011 +accuGOVPerShare 4.344335901053 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15000012 Last Reward Block 15000011 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15000001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15000001 Last Reward Block 14862299 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15000003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15000002 +accuGOVPerShare 4.344321533709 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15000003 Last Reward Block 15000002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15000005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15000004 +accuGOVPerShare 4.344324726452 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15000005 Last Reward Block 15000004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 184526404702160871086491 184526.404702160871086491 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 553545752307109452705559 553545.752307109452705559 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15000007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15000008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15000006 +accuGOVPerShare 4.344327919195 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15000008 Last Reward Block 15000006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15000010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15000009 +accuGOVPerShare 4.34433270831 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15000010 Last Reward Block 15000009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15001001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15001001 Last Reward Block 14862299 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15001003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15001002 +accuGOVPerShare 4.34591790538 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15001003 Last Reward Block 15001002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15001005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15001004 +accuGOVPerShare 4.345921098123 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15001005 Last Reward Block 15001004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 184526404702160871086491 184526.404702160871086491 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 553545752307109452705559 553545.752307109452705559 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15001007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15001008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15001006 +accuGOVPerShare 4.345924290866 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15001008 Last Reward Block 15001006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15001010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15001009 +accuGOVPerShare 4.345929079981 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15001010 Last Reward Block 15001009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15002001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15002001 Last Reward Block 14862299 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15002003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15002002 +accuGOVPerShare 4.347514277052 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15002003 Last Reward Block 15002002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15002005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15002004 +accuGOVPerShare 4.347517469795 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15002005 Last Reward Block 15002004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 184526404702160871086491 184526.404702160871086491 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 553545752307109452705559 553545.752307109452705559 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15002007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15002008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15002006 +accuGOVPerShare 4.347520662538 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15002008 Last Reward Block 15002006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15002010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15002009 +accuGOVPerShare 4.347525451653 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15002010 Last Reward Block 15002009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15003001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15003001 Last Reward Block 14862299 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15003003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15003002 +accuGOVPerShare 4.349110648724 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15003003 Last Reward Block 15003002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15003005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15003004 +accuGOVPerShare 4.349113841467 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15003005 Last Reward Block 15003004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 184526404702160871086491 184526.404702160871086491 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 553545752307109452705559 553545.752307109452705559 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15003007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15003008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15003006 +accuGOVPerShare 4.34911703421 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15003008 Last Reward Block 15003006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15003010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15003009 +accuGOVPerShare 4.349121823325 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15003010 Last Reward Block 15003009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15004001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15004001 Last Reward Block 14862299 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15004003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004002 +accuGOVPerShare 4.350707020395 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15004003 Last Reward Block 15004002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15004005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004004 +accuGOVPerShare 4.350710213138 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15004005 Last Reward Block 15004004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 184526404702160871086491 184526.404702160871086491 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 553545752307109452705559 553545.752307109452705559 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15004007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15004008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004006 +accuGOVPerShare 4.350713405881 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15004008 Last Reward Block 15004006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15004010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004009 +accuGOVPerShare 4.350718194996 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15004010 Last Reward Block 15004009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15005001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15005001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15005003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15005002 +accuGOVPerShare 4.352303392066 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15005003 Last Reward Block 15005002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15005005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15005004 +accuGOVPerShare 4.352306584809 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15005005 Last Reward Block 15005004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15005007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15005008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15005006 +accuGOVPerShare 4.352309777552 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15005008 Last Reward Block 15005006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15005010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15005009 +accuGOVPerShare 4.352314566667 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15005010 Last Reward Block 15005009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15006001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15006001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15006003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15006002 +accuGOVPerShare 4.353899763738 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15006003 Last Reward Block 15006002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15006005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15006004 +accuGOVPerShare 4.353902956481 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15006005 Last Reward Block 15006004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15006007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15006008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15006006 +accuGOVPerShare 4.353906149224 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15006008 Last Reward Block 15006006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15006010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15006009 +accuGOVPerShare 4.353910938339 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15006010 Last Reward Block 15006009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15007001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15007001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15007003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15007002 +accuGOVPerShare 4.355496135409 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15007003 Last Reward Block 15007002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15007005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15007004 +accuGOVPerShare 4.355499328152 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15007005 Last Reward Block 15007004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15007007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15007008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15007006 +accuGOVPerShare 4.355502520895 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15007008 Last Reward Block 15007006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15007010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15007009 +accuGOVPerShare 4.35550731001 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15007010 Last Reward Block 15007009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15008001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15008001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15008003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15008002 +accuGOVPerShare 4.357092507081 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15008003 Last Reward Block 15008002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15008005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15008004 +accuGOVPerShare 4.357095699824 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15008005 Last Reward Block 15008004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15008007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15008008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15008006 +accuGOVPerShare 4.357098892567 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15008008 Last Reward Block 15008006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15008010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15008009 +accuGOVPerShare 4.357103681682 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15008010 Last Reward Block 15008009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15009001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15009001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15009003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15009002 +accuGOVPerShare 4.358688878753 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15009003 Last Reward Block 15009002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15009005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15009004 +accuGOVPerShare 4.358692071496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15009005 Last Reward Block 15009004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15009007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15009008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15009006 +accuGOVPerShare 4.358695264239 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15009008 Last Reward Block 15009006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15009010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15009009 +accuGOVPerShare 4.358700053354 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15009010 Last Reward Block 15009009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15010001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15010001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15010003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15010002 +accuGOVPerShare 4.359460578185 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15010003 Last Reward Block 15010002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15010005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15010004 +accuGOVPerShare 4.359463478698 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15010005 Last Reward Block 15010004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15010007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15010008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15010006 +accuGOVPerShare 4.359466379211 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15010008 Last Reward Block 15010006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15010010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15010009 +accuGOVPerShare 4.359470729981 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15010010 Last Reward Block 15010009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15011001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15011001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15011003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15011002 +accuGOVPerShare 4.360910835003 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15011003 Last Reward Block 15011002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15011005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15011004 +accuGOVPerShare 4.360913735516 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15011005 Last Reward Block 15011004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15011007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15011008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15011006 +accuGOVPerShare 4.360916636029 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15011008 Last Reward Block 15011006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15011010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15011009 +accuGOVPerShare 4.360920986799 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15011010 Last Reward Block 15011009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15012001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15012001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15012003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15012002 +accuGOVPerShare 4.36236109182 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15012003 Last Reward Block 15012002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15012005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15012004 +accuGOVPerShare 4.362363992333 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15012005 Last Reward Block 15012004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15012007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15012008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15012006 +accuGOVPerShare 4.362366892846 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15012008 Last Reward Block 15012006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15012010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15012009 +accuGOVPerShare 4.362371243616 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15012010 Last Reward Block 15012009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15013001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15013001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15013003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15013002 +accuGOVPerShare 4.363811348637 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15013003 Last Reward Block 15013002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15013005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15013004 +accuGOVPerShare 4.36381424915 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15013005 Last Reward Block 15013004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15013007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15013008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15013006 +accuGOVPerShare 4.363817149663 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15013008 Last Reward Block 15013006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15013010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15013009 +accuGOVPerShare 4.363821500433 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15013010 Last Reward Block 15013009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15014001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15014001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15014003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15014002 +accuGOVPerShare 4.365261605454 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15014003 Last Reward Block 15014002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15014005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15014004 +accuGOVPerShare 4.365264505967 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15014005 Last Reward Block 15014004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15014007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15014008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15014006 +accuGOVPerShare 4.36526740648 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15014008 Last Reward Block 15014006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15014010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15014009 +accuGOVPerShare 4.36527175725 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15014010 Last Reward Block 15014009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15015001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15015001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15015003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15015002 +accuGOVPerShare 4.366711862271 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15015003 Last Reward Block 15015002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15015005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15015004 +accuGOVPerShare 4.366714762784 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15015005 Last Reward Block 15015004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15015007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15015008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15015006 +accuGOVPerShare 4.366717663297 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15015008 Last Reward Block 15015006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15015010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15015009 +accuGOVPerShare 4.366722014067 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15015010 Last Reward Block 15015009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15016001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15016001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15016003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15016002 +accuGOVPerShare 4.368162119088 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15016003 Last Reward Block 15016002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15016005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15016004 +accuGOVPerShare 4.368165019601 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15016005 Last Reward Block 15016004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15016007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15016008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15016006 +accuGOVPerShare 4.368167920114 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15016008 Last Reward Block 15016006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15016010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15016009 +accuGOVPerShare 4.368172270884 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15016010 Last Reward Block 15016009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15017001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15017001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15017003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15017002 +accuGOVPerShare 4.369612375906 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15017003 Last Reward Block 15017002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15017005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15017004 +accuGOVPerShare 4.369615276419 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15017005 Last Reward Block 15017004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15017007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15017008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15017006 +accuGOVPerShare 4.369618176932 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15017008 Last Reward Block 15017006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15017010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15017009 +accuGOVPerShare 4.369622527702 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15017010 Last Reward Block 15017009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15018001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15018001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15018003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15018002 +accuGOVPerShare 4.371062632723 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15018003 Last Reward Block 15018002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15018005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15018004 +accuGOVPerShare 4.371065533236 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15018005 Last Reward Block 15018004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15018007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15018008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15018006 +accuGOVPerShare 4.371068433749 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15018008 Last Reward Block 15018006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15018010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15018009 +accuGOVPerShare 4.371072784519 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15018010 Last Reward Block 15018009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15019001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15019001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15019003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15019002 +accuGOVPerShare 4.37251288954 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15019003 Last Reward Block 15019002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15019005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15019004 +accuGOVPerShare 4.372515790053 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15019005 Last Reward Block 15019004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15019007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15019008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15019006 +accuGOVPerShare 4.372518690566 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15019008 Last Reward Block 15019006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15019010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15019009 +accuGOVPerShare 4.372523041336 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15019010 Last Reward Block 15019009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15020001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15020001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15020003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15020002 +accuGOVPerShare 4.373963146357 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15020003 Last Reward Block 15020002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15020005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15020004 +accuGOVPerShare 4.37396604687 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15020005 Last Reward Block 15020004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15020007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15020008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15020006 +accuGOVPerShare 4.373968947383 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15020008 Last Reward Block 15020006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15020010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15020009 +accuGOVPerShare 4.373973298153 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15020010 Last Reward Block 15020009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15021001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15021001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15021003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15021002 +accuGOVPerShare 4.375413403174 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15021003 Last Reward Block 15021002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15021005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15021004 +accuGOVPerShare 4.375416303687 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15021005 Last Reward Block 15021004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15021007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15021008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15021006 +accuGOVPerShare 4.3754192042 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15021008 Last Reward Block 15021006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15021010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15021009 +accuGOVPerShare 4.37542355497 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15021010 Last Reward Block 15021009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15022001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15022001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15022003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15022002 +accuGOVPerShare 4.376863659991 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15022003 Last Reward Block 15022002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15022005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15022004 +accuGOVPerShare 4.376866560504 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15022005 Last Reward Block 15022004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15022007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15022008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15022006 +accuGOVPerShare 4.376869461017 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15022008 Last Reward Block 15022006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15022010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15022009 +accuGOVPerShare 4.376873811787 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15022010 Last Reward Block 15022009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15023001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15023001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15023003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15023002 +accuGOVPerShare 4.378313916808 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15023003 Last Reward Block 15023002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15023005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15023004 +accuGOVPerShare 4.378316817321 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15023005 Last Reward Block 15023004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15023007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15023008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15023006 +accuGOVPerShare 4.378319717834 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15023008 Last Reward Block 15023006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15023010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15023009 +accuGOVPerShare 4.378324068604 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15023010 Last Reward Block 15023009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15024001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15024001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15024003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15024002 +accuGOVPerShare 4.379764173626 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15024003 Last Reward Block 15024002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15024005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15024004 +accuGOVPerShare 4.379767074139 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15024005 Last Reward Block 15024004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15024007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15024008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15024006 +accuGOVPerShare 4.379769974652 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15024008 Last Reward Block 15024006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15024010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15024009 +accuGOVPerShare 4.379774325422 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15024010 Last Reward Block 15024009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15025001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15025001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15025003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15025002 +accuGOVPerShare 4.381214430443 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15025003 Last Reward Block 15025002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15025005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15025004 +accuGOVPerShare 4.381217330956 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15025005 Last Reward Block 15025004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15025007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15025008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15025006 +accuGOVPerShare 4.381220231469 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15025008 Last Reward Block 15025006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15025010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15025009 +accuGOVPerShare 4.381224582239 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15025010 Last Reward Block 15025009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15026001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15026001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15026003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15026002 +accuGOVPerShare 4.38266468726 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15026003 Last Reward Block 15026002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15026005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15026004 +accuGOVPerShare 4.382667587773 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15026005 Last Reward Block 15026004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15026007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15026008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15026006 +accuGOVPerShare 4.382670488286 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15026008 Last Reward Block 15026006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15026010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15026009 +accuGOVPerShare 4.382674839056 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15026010 Last Reward Block 15026009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15027001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15027001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15027003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15027002 +accuGOVPerShare 4.384114944077 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15027003 Last Reward Block 15027002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15027005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15027004 +accuGOVPerShare 4.38411784459 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15027005 Last Reward Block 15027004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15027007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15027008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15027006 +accuGOVPerShare 4.384120745103 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15027008 Last Reward Block 15027006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15027010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15027009 +accuGOVPerShare 4.384125095873 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15027010 Last Reward Block 15027009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15028001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15028001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15028003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15028002 +accuGOVPerShare 4.385565200894 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15028003 Last Reward Block 15028002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15028005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15028004 +accuGOVPerShare 4.385568101407 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15028005 Last Reward Block 15028004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15028007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15028008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15028006 +accuGOVPerShare 4.38557100192 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15028008 Last Reward Block 15028006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15028010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15028009 +accuGOVPerShare 4.38557535269 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15028010 Last Reward Block 15028009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15029001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15029001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15029003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15029002 +accuGOVPerShare 4.387015457711 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15029003 Last Reward Block 15029002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15029005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15029004 +accuGOVPerShare 4.387018358224 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15029005 Last Reward Block 15029004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15029007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15029008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15029006 +accuGOVPerShare 4.387021258737 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15029008 Last Reward Block 15029006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15029010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15029009 +accuGOVPerShare 4.387025609507 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15029010 Last Reward Block 15029009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15030001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15030001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15030003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15030002 +accuGOVPerShare 4.388465714528 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15030003 Last Reward Block 15030002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15030005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15030004 +accuGOVPerShare 4.388468615041 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15030005 Last Reward Block 15030004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15030007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15030008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15030006 +accuGOVPerShare 4.388471515554 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15030008 Last Reward Block 15030006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15030010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15030009 +accuGOVPerShare 4.388475866324 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15030010 Last Reward Block 15030009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15031001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15031001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15031003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15031002 +accuGOVPerShare 4.389915971346 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15031003 Last Reward Block 15031002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15031005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15031004 +accuGOVPerShare 4.389918871859 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15031005 Last Reward Block 15031004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15031007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15031008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15031006 +accuGOVPerShare 4.389921772372 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15031008 Last Reward Block 15031006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15031010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15031009 +accuGOVPerShare 4.389926123142 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15031010 Last Reward Block 15031009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15032001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15032001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15032003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15032002 +accuGOVPerShare 4.391366228163 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15032003 Last Reward Block 15032002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15032005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15032004 +accuGOVPerShare 4.391369128676 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15032005 Last Reward Block 15032004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15032007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15032008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15032006 +accuGOVPerShare 4.391372029189 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15032008 Last Reward Block 15032006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15032010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15032009 +accuGOVPerShare 4.391376379959 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15032010 Last Reward Block 15032009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15033001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15033001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15033003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15033002 +accuGOVPerShare 4.39281648498 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15033003 Last Reward Block 15033002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15033005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15033004 +accuGOVPerShare 4.392819385493 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15033005 Last Reward Block 15033004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15033007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15033008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15033006 +accuGOVPerShare 4.392822286006 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15033008 Last Reward Block 15033006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15033010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15033009 +accuGOVPerShare 4.392826636776 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15033010 Last Reward Block 15033009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15034001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15034001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15034003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15034002 +accuGOVPerShare 4.394266741797 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15034003 Last Reward Block 15034002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15034005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15034004 +accuGOVPerShare 4.39426964231 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15034005 Last Reward Block 15034004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15034007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15034008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15034006 +accuGOVPerShare 4.394272542823 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15034008 Last Reward Block 15034006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15034010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15034009 +accuGOVPerShare 4.394276893593 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15034010 Last Reward Block 15034009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15035001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15035001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15035003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15035002 +accuGOVPerShare 4.395716998614 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15035003 Last Reward Block 15035002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15035005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15035004 +accuGOVPerShare 4.395719899127 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15035005 Last Reward Block 15035004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15035007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15035008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15035006 +accuGOVPerShare 4.39572279964 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15035008 Last Reward Block 15035006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15035010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15035009 +accuGOVPerShare 4.39572715041 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15035010 Last Reward Block 15035009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15036001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15036001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15036003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15036002 +accuGOVPerShare 4.397167255431 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15036003 Last Reward Block 15036002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15036005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15036004 +accuGOVPerShare 4.397170155944 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15036005 Last Reward Block 15036004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15036007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15036008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15036006 +accuGOVPerShare 4.397173056457 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15036008 Last Reward Block 15036006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15036010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15036009 +accuGOVPerShare 4.397177407227 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15036010 Last Reward Block 15036009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15037001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15037001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15037003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15037002 +accuGOVPerShare 4.398617512248 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15037003 Last Reward Block 15037002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15037005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15037004 +accuGOVPerShare 4.398620412761 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15037005 Last Reward Block 15037004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15037007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15037008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15037006 +accuGOVPerShare 4.398623313274 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15037008 Last Reward Block 15037006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15037010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15037009 +accuGOVPerShare 4.398627664044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15037010 Last Reward Block 15037009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15038001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15038001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15038003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15038002 +accuGOVPerShare 4.400067769066 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15038003 Last Reward Block 15038002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15038005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15038004 +accuGOVPerShare 4.400070669579 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15038005 Last Reward Block 15038004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15038007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15038008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15038006 +accuGOVPerShare 4.400073570092 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15038008 Last Reward Block 15038006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15038010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15038009 +accuGOVPerShare 4.400077920862 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15038010 Last Reward Block 15038009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15039001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15039001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15039003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15039002 +accuGOVPerShare 4.401518025883 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15039003 Last Reward Block 15039002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15039005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15039004 +accuGOVPerShare 4.401520926396 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15039005 Last Reward Block 15039004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15039007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15039008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15039006 +accuGOVPerShare 4.401523826909 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15039008 Last Reward Block 15039006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15039010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15039009 +accuGOVPerShare 4.401528177679 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15039010 Last Reward Block 15039009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15040001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15040001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15040003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15040002 +accuGOVPerShare 4.4029682827 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15040003 Last Reward Block 15040002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15040005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15040004 +accuGOVPerShare 4.402971183213 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15040005 Last Reward Block 15040004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15040007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15040008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15040006 +accuGOVPerShare 4.402974083726 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15040008 Last Reward Block 15040006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15040010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15040009 +accuGOVPerShare 4.402978434496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15040010 Last Reward Block 15040009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15041001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15041001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15041003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15041002 +accuGOVPerShare 4.404418539517 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15041003 Last Reward Block 15041002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15041005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15041004 +accuGOVPerShare 4.40442144003 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15041005 Last Reward Block 15041004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15041007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15041008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15041006 +accuGOVPerShare 4.404424340543 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15041008 Last Reward Block 15041006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15041010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15041009 +accuGOVPerShare 4.404428691313 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15041010 Last Reward Block 15041009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15042001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15042001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15042003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15042002 +accuGOVPerShare 4.405868796334 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15042003 Last Reward Block 15042002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15042005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15042004 +accuGOVPerShare 4.405871696847 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15042005 Last Reward Block 15042004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15042007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15042008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15042006 +accuGOVPerShare 4.40587459736 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15042008 Last Reward Block 15042006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15042010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15042009 +accuGOVPerShare 4.40587894813 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15042010 Last Reward Block 15042009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15043001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15043001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15043003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15043002 +accuGOVPerShare 4.407319053151 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15043003 Last Reward Block 15043002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15043005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15043004 +accuGOVPerShare 4.407321953664 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15043005 Last Reward Block 15043004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15043007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15043008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15043006 +accuGOVPerShare 4.407324854177 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15043008 Last Reward Block 15043006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15043010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15043009 +accuGOVPerShare 4.407329204947 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15043010 Last Reward Block 15043009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15044001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15044001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15044003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15044002 +accuGOVPerShare 4.408769309968 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15044003 Last Reward Block 15044002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15044005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15044004 +accuGOVPerShare 4.408772210481 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15044005 Last Reward Block 15044004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15044007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15044008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15044006 +accuGOVPerShare 4.408775110994 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15044008 Last Reward Block 15044006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15044010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15044009 +accuGOVPerShare 4.408779461764 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15044010 Last Reward Block 15044009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15045001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15045001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15045003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15045002 +accuGOVPerShare 4.410219566786 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15045003 Last Reward Block 15045002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15045005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15045004 +accuGOVPerShare 4.410222467299 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15045005 Last Reward Block 15045004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15045007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15045008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15045006 +accuGOVPerShare 4.410225367812 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15045008 Last Reward Block 15045006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15045010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15045009 +accuGOVPerShare 4.410229718582 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15045010 Last Reward Block 15045009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15046001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15046001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15046003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15046002 +accuGOVPerShare 4.411669823603 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15046003 Last Reward Block 15046002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15046005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15046004 +accuGOVPerShare 4.411672724116 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15046005 Last Reward Block 15046004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15046007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15046008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15046006 +accuGOVPerShare 4.411675624629 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15046008 Last Reward Block 15046006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15046010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15046009 +accuGOVPerShare 4.411679975399 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15046010 Last Reward Block 15046009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15047001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15047001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15047003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15047002 +accuGOVPerShare 4.41312008042 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15047003 Last Reward Block 15047002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15047005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15047004 +accuGOVPerShare 4.413122980933 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15047005 Last Reward Block 15047004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15047007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15047008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15047006 +accuGOVPerShare 4.413125881446 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15047008 Last Reward Block 15047006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15047010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15047009 +accuGOVPerShare 4.413130232216 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15047010 Last Reward Block 15047009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15048001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15048001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15048003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15048002 +accuGOVPerShare 4.414570337237 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15048003 Last Reward Block 15048002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15048005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15048004 +accuGOVPerShare 4.41457323775 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15048005 Last Reward Block 15048004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15048007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15048008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15048006 +accuGOVPerShare 4.414576138263 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15048008 Last Reward Block 15048006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15048010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15048009 +accuGOVPerShare 4.414580489033 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15048010 Last Reward Block 15048009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15049001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15049001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15049003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15049002 +accuGOVPerShare 4.416020594054 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15049003 Last Reward Block 15049002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15049005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15049004 +accuGOVPerShare 4.416023494567 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15049005 Last Reward Block 15049004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15049007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15049008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15049006 +accuGOVPerShare 4.41602639508 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15049008 Last Reward Block 15049006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15049010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15049009 +accuGOVPerShare 4.41603074585 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15049010 Last Reward Block 15049009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15050001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15050001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15050003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15050002 +accuGOVPerShare 4.417470850871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15050003 Last Reward Block 15050002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15050005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15050004 +accuGOVPerShare 4.417473751384 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15050005 Last Reward Block 15050004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15050007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15050008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15050006 +accuGOVPerShare 4.417476651897 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15050008 Last Reward Block 15050006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15050010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15050009 +accuGOVPerShare 4.417481002667 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15050010 Last Reward Block 15050009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15051001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15051001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15051003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15051002 +accuGOVPerShare 4.418921107689 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15051003 Last Reward Block 15051002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15051005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15051004 +accuGOVPerShare 4.418924008202 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15051005 Last Reward Block 15051004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15051007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15051008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15051006 +accuGOVPerShare 4.418926908715 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15051008 Last Reward Block 15051006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15051010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15051009 +accuGOVPerShare 4.418931259485 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15051010 Last Reward Block 15051009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15052001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15052001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15052003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15052002 +accuGOVPerShare 4.420371364506 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15052003 Last Reward Block 15052002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15052005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15052004 +accuGOVPerShare 4.420374265019 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15052005 Last Reward Block 15052004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15052007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15052008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15052006 +accuGOVPerShare 4.420377165532 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15052008 Last Reward Block 15052006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15052010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15052009 +accuGOVPerShare 4.420381516302 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15052010 Last Reward Block 15052009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15053001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15053001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15053003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15053002 +accuGOVPerShare 4.421821621323 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15053003 Last Reward Block 15053002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15053005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15053004 +accuGOVPerShare 4.421824521836 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15053005 Last Reward Block 15053004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15053007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15053008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15053006 +accuGOVPerShare 4.421827422349 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15053008 Last Reward Block 15053006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15053010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15053009 +accuGOVPerShare 4.421831773119 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15053010 Last Reward Block 15053009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15054001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15054001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15054003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15054002 +accuGOVPerShare 4.42327187814 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15054003 Last Reward Block 15054002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15054005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15054004 +accuGOVPerShare 4.423274778653 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15054005 Last Reward Block 15054004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15054007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15054008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15054006 +accuGOVPerShare 4.423277679166 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15054008 Last Reward Block 15054006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15054010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15054009 +accuGOVPerShare 4.423282029936 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15054010 Last Reward Block 15054009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15055001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15055001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15055003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15055002 +accuGOVPerShare 4.424722134957 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15055003 Last Reward Block 15055002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15055005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15055004 +accuGOVPerShare 4.42472503547 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15055005 Last Reward Block 15055004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15055007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15055008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15055006 +accuGOVPerShare 4.424727935983 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15055008 Last Reward Block 15055006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15055010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15055009 +accuGOVPerShare 4.424732286753 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15055010 Last Reward Block 15055009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15056001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15056001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15056003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15056002 +accuGOVPerShare 4.426172391774 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15056003 Last Reward Block 15056002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15056005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15056004 +accuGOVPerShare 4.426175292287 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15056005 Last Reward Block 15056004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15056007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15056008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15056006 +accuGOVPerShare 4.4261781928 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15056008 Last Reward Block 15056006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15056010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15056009 +accuGOVPerShare 4.42618254357 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15056010 Last Reward Block 15056009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15057001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15057001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15057003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15057002 +accuGOVPerShare 4.427622648591 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15057003 Last Reward Block 15057002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15057005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15057004 +accuGOVPerShare 4.427625549104 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15057005 Last Reward Block 15057004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15057007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15057008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15057006 +accuGOVPerShare 4.427628449617 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15057008 Last Reward Block 15057006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15057010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15057009 +accuGOVPerShare 4.427632800387 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15057010 Last Reward Block 15057009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15058001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15058001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15058003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15058002 +accuGOVPerShare 4.429072905409 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15058003 Last Reward Block 15058002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15058005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15058004 +accuGOVPerShare 4.429075805922 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15058005 Last Reward Block 15058004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15058007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15058008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15058006 +accuGOVPerShare 4.429078706435 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15058008 Last Reward Block 15058006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15058010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15058009 +accuGOVPerShare 4.429083057205 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15058010 Last Reward Block 15058009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15059001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15059001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15059003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15059002 +accuGOVPerShare 4.430523162226 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15059003 Last Reward Block 15059002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15059005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15059004 +accuGOVPerShare 4.430526062739 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15059005 Last Reward Block 15059004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15059007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15059008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15059006 +accuGOVPerShare 4.430528963252 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15059008 Last Reward Block 15059006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15059010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15059009 +accuGOVPerShare 4.430533314022 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15059010 Last Reward Block 15059009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15060001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15060001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15060003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15060002 +accuGOVPerShare 4.431973419043 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15060003 Last Reward Block 15060002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15060005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15060004 +accuGOVPerShare 4.431976319556 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15060005 Last Reward Block 15060004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15060007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15060008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15060006 +accuGOVPerShare 4.431979220069 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15060008 Last Reward Block 15060006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15060010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15060009 +accuGOVPerShare 4.431983570839 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15060010 Last Reward Block 15060009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15061001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15061001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15061003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15061002 +accuGOVPerShare 4.43342367586 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15061003 Last Reward Block 15061002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15061005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15061004 +accuGOVPerShare 4.433426576373 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15061005 Last Reward Block 15061004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15061007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15061008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15061006 +accuGOVPerShare 4.433429476886 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15061008 Last Reward Block 15061006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15061010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15061009 +accuGOVPerShare 4.433433827656 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15061010 Last Reward Block 15061009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15062001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15062001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15062003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15062002 +accuGOVPerShare 4.434873932677 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15062003 Last Reward Block 15062002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15062005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15062004 +accuGOVPerShare 4.43487683319 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15062005 Last Reward Block 15062004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15062007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15062008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15062006 +accuGOVPerShare 4.434879733703 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15062008 Last Reward Block 15062006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15062010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15062009 +accuGOVPerShare 4.434884084473 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15062010 Last Reward Block 15062009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15063001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15063001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15063003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15063002 +accuGOVPerShare 4.436324189494 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15063003 Last Reward Block 15063002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15063005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15063004 +accuGOVPerShare 4.436327090007 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15063005 Last Reward Block 15063004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15063007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15063008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15063006 +accuGOVPerShare 4.43632999052 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15063008 Last Reward Block 15063006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15063010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15063009 +accuGOVPerShare 4.43633434129 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15063010 Last Reward Block 15063009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15064001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15064001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15064003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15064002 +accuGOVPerShare 4.437774446311 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15064003 Last Reward Block 15064002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15064005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15064004 +accuGOVPerShare 4.437777346824 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15064005 Last Reward Block 15064004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15064007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15064008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15064006 +accuGOVPerShare 4.437780247337 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15064008 Last Reward Block 15064006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15064010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15064009 +accuGOVPerShare 4.437784598107 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15064010 Last Reward Block 15064009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15065001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15065001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15065003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15065002 +accuGOVPerShare 4.439224703129 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15065003 Last Reward Block 15065002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15065005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15065004 +accuGOVPerShare 4.439227603642 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15065005 Last Reward Block 15065004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15065007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15065008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15065006 +accuGOVPerShare 4.439230504155 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15065008 Last Reward Block 15065006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15065010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15065009 +accuGOVPerShare 4.439234854925 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15065010 Last Reward Block 15065009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15066001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15066001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15066003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15066002 +accuGOVPerShare 4.440674959946 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15066003 Last Reward Block 15066002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15066005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15066004 +accuGOVPerShare 4.440677860459 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15066005 Last Reward Block 15066004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15066007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15066008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15066006 +accuGOVPerShare 4.440680760972 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15066008 Last Reward Block 15066006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15066010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15066009 +accuGOVPerShare 4.440685111742 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15066010 Last Reward Block 15066009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15067001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15067001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15067003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15067002 +accuGOVPerShare 4.442125216763 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15067003 Last Reward Block 15067002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15067005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15067004 +accuGOVPerShare 4.442128117276 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15067005 Last Reward Block 15067004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15067007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15067008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15067006 +accuGOVPerShare 4.442131017789 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15067008 Last Reward Block 15067006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15067010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15067009 +accuGOVPerShare 4.442135368559 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15067010 Last Reward Block 15067009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15068001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15068001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15068003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15068002 +accuGOVPerShare 4.44357547358 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15068003 Last Reward Block 15068002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15068005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15068004 +accuGOVPerShare 4.443578374093 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15068005 Last Reward Block 15068004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15068007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15068008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15068006 +accuGOVPerShare 4.443581274606 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15068008 Last Reward Block 15068006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15068010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15068009 +accuGOVPerShare 4.443585625376 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15068010 Last Reward Block 15068009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15069001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15069001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15069003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15069002 +accuGOVPerShare 4.445025730397 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15069003 Last Reward Block 15069002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15069005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15069004 +accuGOVPerShare 4.44502863091 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15069005 Last Reward Block 15069004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15069007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15069008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15069006 +accuGOVPerShare 4.445031531423 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15069008 Last Reward Block 15069006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15069010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15069009 +accuGOVPerShare 4.445035882193 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15069010 Last Reward Block 15069009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15070001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15070001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15070003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15070002 +accuGOVPerShare 4.446475987214 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15070003 Last Reward Block 15070002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15070005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15070004 +accuGOVPerShare 4.446478887727 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15070005 Last Reward Block 15070004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15070007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15070008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15070006 +accuGOVPerShare 4.44648178824 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15070008 Last Reward Block 15070006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15070010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15070009 +accuGOVPerShare 4.44648613901 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15070010 Last Reward Block 15070009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15071001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15071001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15071003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15071002 +accuGOVPerShare 4.447926244031 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15071003 Last Reward Block 15071002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15071005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15071004 +accuGOVPerShare 4.447929144544 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15071005 Last Reward Block 15071004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15071007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15071008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15071006 +accuGOVPerShare 4.447932045057 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15071008 Last Reward Block 15071006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15071010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15071009 +accuGOVPerShare 4.447936395827 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15071010 Last Reward Block 15071009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15072001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15072001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15072003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15072002 +accuGOVPerShare 4.449376500849 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15072003 Last Reward Block 15072002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15072005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15072004 +accuGOVPerShare 4.449379401362 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15072005 Last Reward Block 15072004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15072007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15072008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15072006 +accuGOVPerShare 4.449382301875 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15072008 Last Reward Block 15072006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15072010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15072009 +accuGOVPerShare 4.449386652645 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15072010 Last Reward Block 15072009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15073001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15073001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15073003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15073002 +accuGOVPerShare 4.450826757666 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15073003 Last Reward Block 15073002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15073005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15073004 +accuGOVPerShare 4.450829658179 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15073005 Last Reward Block 15073004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15073007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15073008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15073006 +accuGOVPerShare 4.450832558692 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15073008 Last Reward Block 15073006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15073010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15073009 +accuGOVPerShare 4.450836909462 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15073010 Last Reward Block 15073009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15074001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15074001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15074003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15074002 +accuGOVPerShare 4.452277014483 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15074003 Last Reward Block 15074002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15074005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15074004 +accuGOVPerShare 4.452279914996 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15074005 Last Reward Block 15074004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15074007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15074008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15074006 +accuGOVPerShare 4.452282815509 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15074008 Last Reward Block 15074006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15074010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15074009 +accuGOVPerShare 4.452287166279 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15074010 Last Reward Block 15074009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15075001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15075001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15075003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15075002 +accuGOVPerShare 4.4537272713 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15075003 Last Reward Block 15075002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15075005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15075004 +accuGOVPerShare 4.453730171813 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15075005 Last Reward Block 15075004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15075007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15075008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15075006 +accuGOVPerShare 4.453733072326 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15075008 Last Reward Block 15075006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15075010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15075009 +accuGOVPerShare 4.453737423096 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15075010 Last Reward Block 15075009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15076001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15076001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15076003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15076002 +accuGOVPerShare 4.455177528117 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15076003 Last Reward Block 15076002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15076005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15076004 +accuGOVPerShare 4.45518042863 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15076005 Last Reward Block 15076004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15076007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15076008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15076006 +accuGOVPerShare 4.455183329143 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15076008 Last Reward Block 15076006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15076010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15076009 +accuGOVPerShare 4.455187679913 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15076010 Last Reward Block 15076009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15077001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15077001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15077003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15077002 +accuGOVPerShare 4.456627784934 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15077003 Last Reward Block 15077002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15077005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15077004 +accuGOVPerShare 4.456630685447 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15077005 Last Reward Block 15077004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15077007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15077008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15077006 +accuGOVPerShare 4.45663358596 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15077008 Last Reward Block 15077006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15077010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15077009 +accuGOVPerShare 4.45663793673 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15077010 Last Reward Block 15077009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15078001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15078001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15078003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15078002 +accuGOVPerShare 4.458078041751 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15078003 Last Reward Block 15078002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15078005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15078004 +accuGOVPerShare 4.458080942264 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15078005 Last Reward Block 15078004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15078007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15078008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15078006 +accuGOVPerShare 4.458083842777 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15078008 Last Reward Block 15078006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15078010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15078009 +accuGOVPerShare 4.458088193547 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15078010 Last Reward Block 15078009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15079001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15079001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15079003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15079002 +accuGOVPerShare 4.459528298569 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15079003 Last Reward Block 15079002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15079005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15079004 +accuGOVPerShare 4.459531199082 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15079005 Last Reward Block 15079004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15079007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15079008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15079006 +accuGOVPerShare 4.459534099595 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15079008 Last Reward Block 15079006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15079010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15079009 +accuGOVPerShare 4.459538450365 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15079010 Last Reward Block 15079009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15080001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15080001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15080003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15080002 +accuGOVPerShare 4.460978555386 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15080003 Last Reward Block 15080002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15080005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15080004 +accuGOVPerShare 4.460981455899 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15080005 Last Reward Block 15080004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15080007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15080008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15080006 +accuGOVPerShare 4.460984356412 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15080008 Last Reward Block 15080006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15080010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15080009 +accuGOVPerShare 4.460988707182 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15080010 Last Reward Block 15080009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15081001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15081001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15081003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15081002 +accuGOVPerShare 4.462428812203 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15081003 Last Reward Block 15081002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15081005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15081004 +accuGOVPerShare 4.462431712716 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15081005 Last Reward Block 15081004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15081007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15081008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15081006 +accuGOVPerShare 4.462434613229 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15081008 Last Reward Block 15081006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15081010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15081009 +accuGOVPerShare 4.462438963999 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15081010 Last Reward Block 15081009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15082001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15082001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15082003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15082002 +accuGOVPerShare 4.46387906902 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15082003 Last Reward Block 15082002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15082005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15082004 +accuGOVPerShare 4.463881969533 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15082005 Last Reward Block 15082004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15082007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15082008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15082006 +accuGOVPerShare 4.463884870046 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15082008 Last Reward Block 15082006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15082010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15082009 +accuGOVPerShare 4.463889220816 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15082010 Last Reward Block 15082009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15083001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15083001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15083003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15083002 +accuGOVPerShare 4.465329325837 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15083003 Last Reward Block 15083002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15083005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15083004 +accuGOVPerShare 4.46533222635 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15083005 Last Reward Block 15083004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15083007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15083008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15083006 +accuGOVPerShare 4.465335126863 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15083008 Last Reward Block 15083006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15083010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15083009 +accuGOVPerShare 4.465339477633 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15083010 Last Reward Block 15083009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15084001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15084001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15084003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15084002 +accuGOVPerShare 4.466779582654 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15084003 Last Reward Block 15084002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15084005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15084004 +accuGOVPerShare 4.466782483167 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15084005 Last Reward Block 15084004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15084007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15084008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15084006 +accuGOVPerShare 4.46678538368 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15084008 Last Reward Block 15084006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15084010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15084009 +accuGOVPerShare 4.46678973445 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15084010 Last Reward Block 15084009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15085001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15085001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15085003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15085002 +accuGOVPerShare 4.468229839472 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15085003 Last Reward Block 15085002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15085005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15085004 +accuGOVPerShare 4.468232739985 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15085005 Last Reward Block 15085004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15085007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15085008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15085006 +accuGOVPerShare 4.468235640498 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15085008 Last Reward Block 15085006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15085010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15085009 +accuGOVPerShare 4.468239991268 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15085010 Last Reward Block 15085009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15086001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15086001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15086003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15086002 +accuGOVPerShare 4.469680096289 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15086003 Last Reward Block 15086002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15086005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15086004 +accuGOVPerShare 4.469682996802 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15086005 Last Reward Block 15086004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15086007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15086008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15086006 +accuGOVPerShare 4.469685897315 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15086008 Last Reward Block 15086006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15086010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15086009 +accuGOVPerShare 4.469690248085 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15086010 Last Reward Block 15086009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15087001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15087001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15087003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15087002 +accuGOVPerShare 4.471130353106 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15087003 Last Reward Block 15087002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15087005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15087004 +accuGOVPerShare 4.471133253619 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15087005 Last Reward Block 15087004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15087007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15087008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15087006 +accuGOVPerShare 4.471136154132 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15087008 Last Reward Block 15087006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15087010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15087009 +accuGOVPerShare 4.471140504902 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15087010 Last Reward Block 15087009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15088001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15088001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15088003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15088002 +accuGOVPerShare 4.472580609923 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15088003 Last Reward Block 15088002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15088005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15088004 +accuGOVPerShare 4.472583510436 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15088005 Last Reward Block 15088004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15088007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15088008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15088006 +accuGOVPerShare 4.472586410949 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15088008 Last Reward Block 15088006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15088010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15088009 +accuGOVPerShare 4.472590761719 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15088010 Last Reward Block 15088009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15089001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15089001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15089003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15089002 +accuGOVPerShare 4.47403086674 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15089003 Last Reward Block 15089002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15089005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15089004 +accuGOVPerShare 4.474033767253 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15089005 Last Reward Block 15089004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15089007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15089008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15089006 +accuGOVPerShare 4.474036667766 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15089008 Last Reward Block 15089006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15089010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15089009 +accuGOVPerShare 4.474041018536 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15089010 Last Reward Block 15089009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15090001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15090001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15090003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15090002 +accuGOVPerShare 4.475481123557 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15090003 Last Reward Block 15090002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15090005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15090004 +accuGOVPerShare 4.47548402407 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15090005 Last Reward Block 15090004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15090007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15090008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15090006 +accuGOVPerShare 4.475486924583 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15090008 Last Reward Block 15090006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15090010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15090009 +accuGOVPerShare 4.475491275353 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15090010 Last Reward Block 15090009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15091001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15091001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15091003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15091002 +accuGOVPerShare 4.476931380374 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15091003 Last Reward Block 15091002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15091005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15091004 +accuGOVPerShare 4.476934280887 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15091005 Last Reward Block 15091004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15091007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15091008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15091006 +accuGOVPerShare 4.4769371814 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15091008 Last Reward Block 15091006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15091010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15091009 +accuGOVPerShare 4.47694153217 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15091010 Last Reward Block 15091009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15092001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15092001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15092003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15092002 +accuGOVPerShare 4.478381637192 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15092003 Last Reward Block 15092002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15092005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15092004 +accuGOVPerShare 4.478384537705 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15092005 Last Reward Block 15092004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15092007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15092008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15092006 +accuGOVPerShare 4.478387438218 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15092008 Last Reward Block 15092006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15092010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15092009 +accuGOVPerShare 4.478391788988 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15092010 Last Reward Block 15092009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15093001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15093001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15093003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15093002 +accuGOVPerShare 4.479831894009 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15093003 Last Reward Block 15093002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15093005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15093004 +accuGOVPerShare 4.479834794522 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15093005 Last Reward Block 15093004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15093007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15093008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15093006 +accuGOVPerShare 4.479837695035 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15093008 Last Reward Block 15093006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15093010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15093009 +accuGOVPerShare 4.479842045805 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15093010 Last Reward Block 15093009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15094001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15094001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15094003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15094002 +accuGOVPerShare 4.481282150826 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15094003 Last Reward Block 15094002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15094005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15094004 +accuGOVPerShare 4.481285051339 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15094005 Last Reward Block 15094004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15094007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15094008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15094006 +accuGOVPerShare 4.481287951852 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15094008 Last Reward Block 15094006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15094010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15094009 +accuGOVPerShare 4.481292302622 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15094010 Last Reward Block 15094009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15095001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15095001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15095003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15095002 +accuGOVPerShare 4.482732407643 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15095003 Last Reward Block 15095002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15095005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15095004 +accuGOVPerShare 4.482735308156 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15095005 Last Reward Block 15095004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15095007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15095008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15095006 +accuGOVPerShare 4.482738208669 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15095008 Last Reward Block 15095006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15095010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15095009 +accuGOVPerShare 4.482742559439 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15095010 Last Reward Block 15095009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15096001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15096001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15096003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15096002 +accuGOVPerShare 4.48418266446 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15096003 Last Reward Block 15096002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15096005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15096004 +accuGOVPerShare 4.484185564973 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15096005 Last Reward Block 15096004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15096007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15096008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15096006 +accuGOVPerShare 4.484188465486 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15096008 Last Reward Block 15096006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15096010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15096009 +accuGOVPerShare 4.484192816256 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15096010 Last Reward Block 15096009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15097001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15097001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15097003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15097002 +accuGOVPerShare 4.485632921277 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15097003 Last Reward Block 15097002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15097005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15097004 +accuGOVPerShare 4.48563582179 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15097005 Last Reward Block 15097004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15097007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15097008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15097006 +accuGOVPerShare 4.485638722303 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15097008 Last Reward Block 15097006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15097010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15097009 +accuGOVPerShare 4.485643073073 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15097010 Last Reward Block 15097009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15098001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15098001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15098003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15098002 +accuGOVPerShare 4.487083178094 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15098003 Last Reward Block 15098002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15098005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15098004 +accuGOVPerShare 4.487086078607 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15098005 Last Reward Block 15098004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15098007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15098008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15098006 +accuGOVPerShare 4.48708897912 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15098008 Last Reward Block 15098006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15098010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15098009 +accuGOVPerShare 4.48709332989 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15098010 Last Reward Block 15098009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15099001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15099001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15099003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15099002 +accuGOVPerShare 4.488533434912 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15099003 Last Reward Block 15099002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15099005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15099004 +accuGOVPerShare 4.488536335425 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15099005 Last Reward Block 15099004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15099007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15099008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15099006 +accuGOVPerShare 4.488539235938 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15099008 Last Reward Block 15099006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15099010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15099009 +accuGOVPerShare 4.488543586708 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15099010 Last Reward Block 15099009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15100001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15100001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15100003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15100002 +accuGOVPerShare 4.489983691729 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15100003 Last Reward Block 15100002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15100005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15100004 +accuGOVPerShare 4.489986592242 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15100005 Last Reward Block 15100004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15100007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15100008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15100006 +accuGOVPerShare 4.489989492755 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15100008 Last Reward Block 15100006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15100010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15100009 +accuGOVPerShare 4.489993843525 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15100010 Last Reward Block 15100009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15101001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15101001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15101003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15101002 +accuGOVPerShare 4.491433948546 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15101003 Last Reward Block 15101002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15101005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15101004 +accuGOVPerShare 4.491436849059 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15101005 Last Reward Block 15101004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15101007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15101008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15101006 +accuGOVPerShare 4.491439749572 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15101008 Last Reward Block 15101006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15101010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15101009 +accuGOVPerShare 4.491444100342 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15101010 Last Reward Block 15101009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15102001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15102001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15102003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15102002 +accuGOVPerShare 4.492884205363 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15102003 Last Reward Block 15102002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15102005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15102004 +accuGOVPerShare 4.492887105876 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15102005 Last Reward Block 15102004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15102007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15102008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15102006 +accuGOVPerShare 4.492890006389 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15102008 Last Reward Block 15102006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15102010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15102009 +accuGOVPerShare 4.492894357159 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15102010 Last Reward Block 15102009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15103001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15103001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15103003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15103002 +accuGOVPerShare 4.49433446218 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15103003 Last Reward Block 15103002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15103005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15103004 +accuGOVPerShare 4.494337362693 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15103005 Last Reward Block 15103004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15103007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15103008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15103006 +accuGOVPerShare 4.494340263206 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15103008 Last Reward Block 15103006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15103010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15103009 +accuGOVPerShare 4.494344613976 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15103010 Last Reward Block 15103009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15104001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15104001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15104003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15104002 +accuGOVPerShare 4.495784718997 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15104003 Last Reward Block 15104002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15104005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15104004 +accuGOVPerShare 4.49578761951 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15104005 Last Reward Block 15104004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15104007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15104008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15104006 +accuGOVPerShare 4.495790520023 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15104008 Last Reward Block 15104006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15104010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15104009 +accuGOVPerShare 4.495794870793 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15104010 Last Reward Block 15104009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15105001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15105001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15105003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15105002 +accuGOVPerShare 4.497234975814 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15105003 Last Reward Block 15105002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15105005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15105004 +accuGOVPerShare 4.497237876327 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15105005 Last Reward Block 15105004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15105007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15105008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15105006 +accuGOVPerShare 4.49724077684 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15105008 Last Reward Block 15105006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15105010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15105009 +accuGOVPerShare 4.49724512761 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15105010 Last Reward Block 15105009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15106001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15106001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15106003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15106002 +accuGOVPerShare 4.498685232632 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15106003 Last Reward Block 15106002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15106005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15106004 +accuGOVPerShare 4.498688133145 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15106005 Last Reward Block 15106004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15106007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15106008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15106006 +accuGOVPerShare 4.498691033658 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15106008 Last Reward Block 15106006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15106010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15106009 +accuGOVPerShare 4.498695384428 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15106010 Last Reward Block 15106009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15107001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15107001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15107003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15107002 +accuGOVPerShare 4.500135489449 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15107003 Last Reward Block 15107002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15107005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15107004 +accuGOVPerShare 4.500138389962 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15107005 Last Reward Block 15107004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15107007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15107008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15107006 +accuGOVPerShare 4.500141290475 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15107008 Last Reward Block 15107006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15107010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15107009 +accuGOVPerShare 4.500145641245 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15107010 Last Reward Block 15107009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15108001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15108001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15108003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15108002 +accuGOVPerShare 4.501585746266 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15108003 Last Reward Block 15108002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15108005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15108004 +accuGOVPerShare 4.501588646779 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15108005 Last Reward Block 15108004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15108007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15108008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15108006 +accuGOVPerShare 4.501591547292 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15108008 Last Reward Block 15108006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15108010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15108009 +accuGOVPerShare 4.501595898062 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15108010 Last Reward Block 15108009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15109001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15109001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15109003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15109002 +accuGOVPerShare 4.503036003083 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15109003 Last Reward Block 15109002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15109005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15109004 +accuGOVPerShare 4.503038903596 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15109005 Last Reward Block 15109004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15109007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15109008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15109006 +accuGOVPerShare 4.503041804109 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15109008 Last Reward Block 15109006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15109010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15109009 +accuGOVPerShare 4.503046154879 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15109010 Last Reward Block 15109009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15110001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15110001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15110003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15110002 +accuGOVPerShare 4.5044862599 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15110003 Last Reward Block 15110002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15110005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15110004 +accuGOVPerShare 4.504489160413 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15110005 Last Reward Block 15110004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15110007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15110008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15110006 +accuGOVPerShare 4.504492060926 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15110008 Last Reward Block 15110006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15110010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15110009 +accuGOVPerShare 4.504496411696 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15110010 Last Reward Block 15110009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15111001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15111001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15111003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15111002 +accuGOVPerShare 4.505936516717 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15111003 Last Reward Block 15111002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15111005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15111004 +accuGOVPerShare 4.50593941723 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15111005 Last Reward Block 15111004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15111007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15111008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15111006 +accuGOVPerShare 4.505942317743 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15111008 Last Reward Block 15111006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15111010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15111009 +accuGOVPerShare 4.505946668513 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15111010 Last Reward Block 15111009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15112001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15112001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15112003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15112002 +accuGOVPerShare 4.507386773534 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15112003 Last Reward Block 15112002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15112005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15112004 +accuGOVPerShare 4.507389674047 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15112005 Last Reward Block 15112004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15112007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15112008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15112006 +accuGOVPerShare 4.50739257456 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15112008 Last Reward Block 15112006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15112010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15112009 +accuGOVPerShare 4.50739692533 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15112010 Last Reward Block 15112009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15113001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15113001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15113003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15113002 +accuGOVPerShare 4.508837030352 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15113003 Last Reward Block 15113002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15113005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15113004 +accuGOVPerShare 4.508839930865 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15113005 Last Reward Block 15113004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15113007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15113008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15113006 +accuGOVPerShare 4.508842831378 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15113008 Last Reward Block 15113006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15113010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15113009 +accuGOVPerShare 4.508847182148 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15113010 Last Reward Block 15113009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15114001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15114001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15114003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15114002 +accuGOVPerShare 4.510287287169 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15114003 Last Reward Block 15114002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15114005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15114004 +accuGOVPerShare 4.510290187682 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15114005 Last Reward Block 15114004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15114007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15114008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15114006 +accuGOVPerShare 4.510293088195 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15114008 Last Reward Block 15114006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15114010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15114009 +accuGOVPerShare 4.510297438965 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15114010 Last Reward Block 15114009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15115001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15115001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15115003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15115002 +accuGOVPerShare 4.511737543986 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15115003 Last Reward Block 15115002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15115005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15115004 +accuGOVPerShare 4.511740444499 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15115005 Last Reward Block 15115004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15115007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15115008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15115006 +accuGOVPerShare 4.511743345012 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15115008 Last Reward Block 15115006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15115010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15115009 +accuGOVPerShare 4.511747695782 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15115010 Last Reward Block 15115009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15116001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15116001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15116003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15116002 +accuGOVPerShare 4.513187800803 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15116003 Last Reward Block 15116002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15116005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15116004 +accuGOVPerShare 4.513190701316 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15116005 Last Reward Block 15116004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15116007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15116008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15116006 +accuGOVPerShare 4.513193601829 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15116008 Last Reward Block 15116006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15116010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15116009 +accuGOVPerShare 4.513197952599 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15116010 Last Reward Block 15116009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15117001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15117001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15117003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15117002 +accuGOVPerShare 4.51463805762 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15117003 Last Reward Block 15117002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15117005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15117004 +accuGOVPerShare 4.514640958133 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15117005 Last Reward Block 15117004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15117007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15117008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15117006 +accuGOVPerShare 4.514643858646 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15117008 Last Reward Block 15117006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15117010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15117009 +accuGOVPerShare 4.514648209416 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15117010 Last Reward Block 15117009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15118001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15118001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15118003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15118002 +accuGOVPerShare 4.516088314437 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15118003 Last Reward Block 15118002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15118005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15118004 +accuGOVPerShare 4.51609121495 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15118005 Last Reward Block 15118004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15118007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15118008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15118006 +accuGOVPerShare 4.516094115463 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15118008 Last Reward Block 15118006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15118010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15118009 +accuGOVPerShare 4.516098466233 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15118010 Last Reward Block 15118009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15119001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15119001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15119003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15119002 +accuGOVPerShare 4.517538571255 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15119003 Last Reward Block 15119002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15119005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15119004 +accuGOVPerShare 4.517541471768 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15119005 Last Reward Block 15119004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15119007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15119008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15119006 +accuGOVPerShare 4.517544372281 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15119008 Last Reward Block 15119006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15119010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15119009 +accuGOVPerShare 4.517548723051 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15119010 Last Reward Block 15119009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15120001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15120001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15120003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15120002 +accuGOVPerShare 4.518988828072 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15120003 Last Reward Block 15120002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15120005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15120004 +accuGOVPerShare 4.518991728585 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15120005 Last Reward Block 15120004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15120007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15120008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15120006 +accuGOVPerShare 4.518994629098 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15120008 Last Reward Block 15120006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15120010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15120009 +accuGOVPerShare 4.518998979868 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15120010 Last Reward Block 15120009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15121001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15121001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15121003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15121002 +accuGOVPerShare 4.520439084889 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15121003 Last Reward Block 15121002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15121005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15121004 +accuGOVPerShare 4.520441985402 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15121005 Last Reward Block 15121004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15121007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15121008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15121006 +accuGOVPerShare 4.520444885915 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15121008 Last Reward Block 15121006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15121010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15121009 +accuGOVPerShare 4.520449236685 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15121010 Last Reward Block 15121009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15122001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15122001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15122003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15122002 +accuGOVPerShare 4.521889341706 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15122003 Last Reward Block 15122002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15122005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15122004 +accuGOVPerShare 4.521892242219 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15122005 Last Reward Block 15122004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15122007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15122008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15122006 +accuGOVPerShare 4.521895142732 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15122008 Last Reward Block 15122006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15122010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15122009 +accuGOVPerShare 4.521899493502 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15122010 Last Reward Block 15122009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15123001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15123001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15123003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15123002 +accuGOVPerShare 4.523339598523 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15123003 Last Reward Block 15123002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15123005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15123004 +accuGOVPerShare 4.523342499036 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15123005 Last Reward Block 15123004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15123007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15123008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15123006 +accuGOVPerShare 4.523345399549 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15123008 Last Reward Block 15123006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15123010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15123009 +accuGOVPerShare 4.523349750319 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15123010 Last Reward Block 15123009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15124001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15124001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15124003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15124002 +accuGOVPerShare 4.52478985534 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15124003 Last Reward Block 15124002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15124005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15124004 +accuGOVPerShare 4.524792755853 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15124005 Last Reward Block 15124004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15124007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15124008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15124006 +accuGOVPerShare 4.524795656366 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15124008 Last Reward Block 15124006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15124010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15124009 +accuGOVPerShare 4.524800007136 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15124010 Last Reward Block 15124009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15125001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15125001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15125003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15125002 +accuGOVPerShare 4.526240112157 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15125003 Last Reward Block 15125002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15125005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15125004 +accuGOVPerShare 4.52624301267 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15125005 Last Reward Block 15125004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15125007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15125008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15125006 +accuGOVPerShare 4.526245913183 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15125008 Last Reward Block 15125006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15125010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15125009 +accuGOVPerShare 4.526250263953 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15125010 Last Reward Block 15125009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15126001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15126001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15126003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15126002 +accuGOVPerShare 4.527690368975 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15126003 Last Reward Block 15126002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15126005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15126004 +accuGOVPerShare 4.527693269488 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15126005 Last Reward Block 15126004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15126007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15126008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15126006 +accuGOVPerShare 4.527696170001 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15126008 Last Reward Block 15126006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15126010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15126009 +accuGOVPerShare 4.527700520771 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15126010 Last Reward Block 15126009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15127001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15127001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15127003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15127002 +accuGOVPerShare 4.529140625792 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15127003 Last Reward Block 15127002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15127005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15127004 +accuGOVPerShare 4.529143526305 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15127005 Last Reward Block 15127004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15127007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15127008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15127006 +accuGOVPerShare 4.529146426818 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15127008 Last Reward Block 15127006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15127010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15127009 +accuGOVPerShare 4.529150777588 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15127010 Last Reward Block 15127009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15128001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15128001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15128003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15128002 +accuGOVPerShare 4.530590882609 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15128003 Last Reward Block 15128002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15128005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15128004 +accuGOVPerShare 4.530593783122 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15128005 Last Reward Block 15128004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15128007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15128008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15128006 +accuGOVPerShare 4.530596683635 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15128008 Last Reward Block 15128006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15128010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15128009 +accuGOVPerShare 4.530601034405 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15128010 Last Reward Block 15128009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15129001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15129001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15129003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15129002 +accuGOVPerShare 4.532041139426 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15129003 Last Reward Block 15129002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15129005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15129004 +accuGOVPerShare 4.532044039939 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15129005 Last Reward Block 15129004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15129007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15129008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15129006 +accuGOVPerShare 4.532046940452 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15129008 Last Reward Block 15129006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15129010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15129009 +accuGOVPerShare 4.532051291222 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15129010 Last Reward Block 15129009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15130001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15130001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15130003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15130002 +accuGOVPerShare 4.533491396243 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15130003 Last Reward Block 15130002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15130005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15130004 +accuGOVPerShare 4.533494296756 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15130005 Last Reward Block 15130004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15130007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15130008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15130006 +accuGOVPerShare 4.533497197269 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15130008 Last Reward Block 15130006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15130010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15130009 +accuGOVPerShare 4.533501548039 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15130010 Last Reward Block 15130009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15131001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15131001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15131003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15131002 +accuGOVPerShare 4.53494165306 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15131003 Last Reward Block 15131002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15131005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15131004 +accuGOVPerShare 4.534944553573 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15131005 Last Reward Block 15131004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15131007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15131008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15131006 +accuGOVPerShare 4.534947454086 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15131008 Last Reward Block 15131006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15131010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15131009 +accuGOVPerShare 4.534951804856 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15131010 Last Reward Block 15131009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15132001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15132001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15132003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15132002 +accuGOVPerShare 4.536391909877 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15132003 Last Reward Block 15132002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15132005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15132004 +accuGOVPerShare 4.53639481039 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15132005 Last Reward Block 15132004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15132007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15132008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15132006 +accuGOVPerShare 4.536397710903 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15132008 Last Reward Block 15132006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15132010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15132009 +accuGOVPerShare 4.536402061673 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15132010 Last Reward Block 15132009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15133001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15133001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15133003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15133002 +accuGOVPerShare 4.537842166695 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15133003 Last Reward Block 15133002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15133005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15133004 +accuGOVPerShare 4.537845067208 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15133005 Last Reward Block 15133004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15133007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15133008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15133006 +accuGOVPerShare 4.537847967721 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15133008 Last Reward Block 15133006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15133010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15133009 +accuGOVPerShare 4.537852318491 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15133010 Last Reward Block 15133009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15134001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15134001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15134003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15134002 +accuGOVPerShare 4.539292423512 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15134003 Last Reward Block 15134002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15134005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15134004 +accuGOVPerShare 4.539295324025 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15134005 Last Reward Block 15134004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15134007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15134008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15134006 +accuGOVPerShare 4.539298224538 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15134008 Last Reward Block 15134006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15134010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15134009 +accuGOVPerShare 4.539302575308 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15134010 Last Reward Block 15134009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15135001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15135001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15135003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15135002 +accuGOVPerShare 4.540742680329 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15135003 Last Reward Block 15135002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15135005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15135004 +accuGOVPerShare 4.540745580842 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15135005 Last Reward Block 15135004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15135007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15135008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15135006 +accuGOVPerShare 4.540748481355 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15135008 Last Reward Block 15135006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15135010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15135009 +accuGOVPerShare 4.540752832125 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15135010 Last Reward Block 15135009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15136001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15136001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15136003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15136002 +accuGOVPerShare 4.542192937146 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15136003 Last Reward Block 15136002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15136005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15136004 +accuGOVPerShare 4.542195837659 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15136005 Last Reward Block 15136004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15136007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15136008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15136006 +accuGOVPerShare 4.542198738172 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15136008 Last Reward Block 15136006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15136010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15136009 +accuGOVPerShare 4.542203088942 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15136010 Last Reward Block 15136009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15137001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15137001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15137003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137002 +accuGOVPerShare 4.543643193963 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15137003 Last Reward Block 15137002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15137005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137004 +accuGOVPerShare 4.543646094476 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15137005 Last Reward Block 15137004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15137007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15137008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137006 +accuGOVPerShare 4.543648994989 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15137008 Last Reward Block 15137006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15137010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137009 +accuGOVPerShare 4.543653345759 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15137010 Last Reward Block 15137009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15138001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15138001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15138003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15138002 +accuGOVPerShare 4.54509345078 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15138003 Last Reward Block 15138002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15138005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15138004 +accuGOVPerShare 4.545096351293 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15138005 Last Reward Block 15138004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15138007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15138008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15138006 +accuGOVPerShare 4.545099251806 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15138008 Last Reward Block 15138006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15138010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15138009 +accuGOVPerShare 4.545103602576 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15138010 Last Reward Block 15138009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15139001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15139001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15139003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15139002 +accuGOVPerShare 4.546543707597 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15139003 Last Reward Block 15139002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15139005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15139004 +accuGOVPerShare 4.54654660811 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15139005 Last Reward Block 15139004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15139007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15139008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15139006 +accuGOVPerShare 4.546549508623 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15139008 Last Reward Block 15139006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15139010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15139009 +accuGOVPerShare 4.546553859393 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15139010 Last Reward Block 15139009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15140001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15140001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15140003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15140002 +accuGOVPerShare 4.547993964414 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15140003 Last Reward Block 15140002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15140005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15140004 +accuGOVPerShare 4.547996864927 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15140005 Last Reward Block 15140004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15140007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15140008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15140006 +accuGOVPerShare 4.54799976544 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15140008 Last Reward Block 15140006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15140010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15140009 +accuGOVPerShare 4.54800411621 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15140010 Last Reward Block 15140009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15141001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15141001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15141003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15141002 +accuGOVPerShare 4.549444221231 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15141003 Last Reward Block 15141002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15141005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15141004 +accuGOVPerShare 4.549447121744 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15141005 Last Reward Block 15141004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15141007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15141008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15141006 +accuGOVPerShare 4.549450022257 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15141008 Last Reward Block 15141006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15141010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15141009 +accuGOVPerShare 4.549454373027 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15141010 Last Reward Block 15141009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15142001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15142001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15142003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15142002 +accuGOVPerShare 4.550894478048 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15142003 Last Reward Block 15142002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15142005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15142004 +accuGOVPerShare 4.550897378561 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15142005 Last Reward Block 15142004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15142007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15142008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15142006 +accuGOVPerShare 4.550900279074 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15142008 Last Reward Block 15142006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15142010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15142009 +accuGOVPerShare 4.550904629844 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15142010 Last Reward Block 15142009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15143001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15143001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15143003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15143002 +accuGOVPerShare 4.552344734865 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15143003 Last Reward Block 15143002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15143005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15143004 +accuGOVPerShare 4.552347635378 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15143005 Last Reward Block 15143004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15143007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15143008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15143006 +accuGOVPerShare 4.552350535891 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15143008 Last Reward Block 15143006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15143010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15143009 +accuGOVPerShare 4.552354886661 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15143010 Last Reward Block 15143009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15144001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15144001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15144003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15144002 +accuGOVPerShare 4.553794991682 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15144003 Last Reward Block 15144002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15144005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15144004 +accuGOVPerShare 4.553797892195 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15144005 Last Reward Block 15144004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15144007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15144008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15144006 +accuGOVPerShare 4.553800792708 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15144008 Last Reward Block 15144006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15144010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15144009 +accuGOVPerShare 4.553805143478 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15144010 Last Reward Block 15144009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15145001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15145001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15145003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15145002 +accuGOVPerShare 4.5552452485 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15145003 Last Reward Block 15145002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15145005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15145004 +accuGOVPerShare 4.555248149013 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15145005 Last Reward Block 15145004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15145007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15145008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15145006 +accuGOVPerShare 4.555251049526 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15145008 Last Reward Block 15145006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15145010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15145009 +accuGOVPerShare 4.555255400296 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15145010 Last Reward Block 15145009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15146001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15146001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15146003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15146002 +accuGOVPerShare 4.556695505317 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15146003 Last Reward Block 15146002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15146005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15146004 +accuGOVPerShare 4.55669840583 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15146005 Last Reward Block 15146004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15146007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15146008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15146006 +accuGOVPerShare 4.556701306343 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15146008 Last Reward Block 15146006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15146010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15146009 +accuGOVPerShare 4.556705657113 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15146010 Last Reward Block 15146009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15147001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15147001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15147003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15147002 +accuGOVPerShare 4.558145762134 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15147003 Last Reward Block 15147002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15147005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15147004 +accuGOVPerShare 4.558148662647 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15147005 Last Reward Block 15147004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15147007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15147008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15147006 +accuGOVPerShare 4.55815156316 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15147008 Last Reward Block 15147006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15147010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15147009 +accuGOVPerShare 4.55815591393 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15147010 Last Reward Block 15147009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15148001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15148001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15148003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15148002 +accuGOVPerShare 4.559596018951 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15148003 Last Reward Block 15148002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15148005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15148004 +accuGOVPerShare 4.559598919464 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15148005 Last Reward Block 15148004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15148007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15148008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15148006 +accuGOVPerShare 4.559601819977 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15148008 Last Reward Block 15148006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15148010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15148009 +accuGOVPerShare 4.559606170747 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15148010 Last Reward Block 15148009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15149001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15149001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15149003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15149002 +accuGOVPerShare 4.561046275768 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15149003 Last Reward Block 15149002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15149005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15149004 +accuGOVPerShare 4.561049176281 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15149005 Last Reward Block 15149004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15149007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15149008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15149006 +accuGOVPerShare 4.561052076794 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15149008 Last Reward Block 15149006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15149010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15149009 +accuGOVPerShare 4.561056427564 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15149010 Last Reward Block 15149009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15150001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15150001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15150003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15150002 +accuGOVPerShare 4.562496532585 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15150003 Last Reward Block 15150002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15150005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15150004 +accuGOVPerShare 4.562499433098 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15150005 Last Reward Block 15150004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15150007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15150008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15150006 +accuGOVPerShare 4.562502333611 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15150008 Last Reward Block 15150006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15150010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15150009 +accuGOVPerShare 4.562506684381 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15150010 Last Reward Block 15150009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15151001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15151001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15151003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15151002 +accuGOVPerShare 4.563946789402 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15151003 Last Reward Block 15151002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15151005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15151004 +accuGOVPerShare 4.563949689915 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15151005 Last Reward Block 15151004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15151007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15151008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15151006 +accuGOVPerShare 4.563952590428 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15151008 Last Reward Block 15151006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15151010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15151009 +accuGOVPerShare 4.563956941198 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15151010 Last Reward Block 15151009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15152001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15152001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15152003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15152002 +accuGOVPerShare 4.56539704622 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15152003 Last Reward Block 15152002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15152005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15152004 +accuGOVPerShare 4.565399946733 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15152005 Last Reward Block 15152004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15152007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15152008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15152006 +accuGOVPerShare 4.565402847246 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15152008 Last Reward Block 15152006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15152010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15152009 +accuGOVPerShare 4.565407198016 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15152010 Last Reward Block 15152009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15153001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15153001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15153003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15153002 +accuGOVPerShare 4.566847303037 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15153003 Last Reward Block 15153002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15153005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15153004 +accuGOVPerShare 4.56685020355 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15153005 Last Reward Block 15153004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15153007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15153008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15153006 +accuGOVPerShare 4.566853104063 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15153008 Last Reward Block 15153006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15153010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15153009 +accuGOVPerShare 4.566857454833 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15153010 Last Reward Block 15153009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15154001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15154001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15154003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15154002 +accuGOVPerShare 4.568297559854 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15154003 Last Reward Block 15154002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15154005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15154004 +accuGOVPerShare 4.568300460367 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15154005 Last Reward Block 15154004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15154007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15154008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15154006 +accuGOVPerShare 4.56830336088 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15154008 Last Reward Block 15154006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15154010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15154009 +accuGOVPerShare 4.56830771165 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15154010 Last Reward Block 15154009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 diff --git a/staking_simulation_every_1000_blockssss.txt b/staking_simulation_every_1000_blockssss.txt new file mode 100644 index 0000000..3109e65 --- /dev/null +++ b/staking_simulation_every_1000_blockssss.txt @@ -0,0 +1,33480 @@ + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15000003 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15000003 Last Reward Block 14862299 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15000005 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15000004 +accuGOVPerShare 4.344324726452 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15000005 Last Reward Block 15000004 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15000007 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 184526404702160871086491 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15000006 +accuGOVPerShare 4.344327919195 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15000007 Last Reward Block 15000006 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 184526404702160871086491 184526.404702160871086491 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 553545752307109452705559 553545.752307109452705559 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15000009 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15000010 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15000008 +accuGOVPerShare 4.344331111938 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15000010 Last Reward Block 15000008 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15000012 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15000011 +accuGOVPerShare 4.344335901053 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15000012 Last Reward Block 15000011 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15000001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15000001 Last Reward Block 14862299 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15000003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15000002 +accuGOVPerShare 4.344321533709 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15000003 Last Reward Block 15000002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15000005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 184526404702160871086491 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15000004 +accuGOVPerShare 4.344324726452 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15000005 Last Reward Block 15000004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 184526404702160871086491 184526.404702160871086491 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 553545752307109452705559 553545.752307109452705559 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15000007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15000008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15000006 +accuGOVPerShare 4.344327919195 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15000008 Last Reward Block 15000006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15000010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15000009 +accuGOVPerShare 4.34433270831 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15000010 Last Reward Block 15000009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15001001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15001001 Last Reward Block 14862299 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15001003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15001002 +accuGOVPerShare 4.34591790538 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15001003 Last Reward Block 15001002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15001005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 184526404702160871086491 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15001004 +accuGOVPerShare 4.345921098123 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15001005 Last Reward Block 15001004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 184526404702160871086491 184526.404702160871086491 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 553545752307109452705559 553545.752307109452705559 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15001007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15001008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15001006 +accuGOVPerShare 4.345924290866 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15001008 Last Reward Block 15001006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15001010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15001009 +accuGOVPerShare 4.345929079981 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15001010 Last Reward Block 15001009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15002001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15002001 Last Reward Block 14862299 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15002003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15002002 +accuGOVPerShare 4.347514277052 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15002003 Last Reward Block 15002002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15002005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 184526404702160871086491 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15002004 +accuGOVPerShare 4.347517469795 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15002005 Last Reward Block 15002004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 184526404702160871086491 184526.404702160871086491 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 553545752307109452705559 553545.752307109452705559 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15002007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15002008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15002006 +accuGOVPerShare 4.347520662538 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15002008 Last Reward Block 15002006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15002010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15002009 +accuGOVPerShare 4.347525451653 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15002010 Last Reward Block 15002009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15003001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15003001 Last Reward Block 14862299 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15003003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15003002 +accuGOVPerShare 4.349110648724 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15003003 Last Reward Block 15003002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15003005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 184526404702160871086491 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15003004 +accuGOVPerShare 4.349113841467 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15003005 Last Reward Block 15003004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 184526404702160871086491 184526.404702160871086491 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 553545752307109452705559 553545.752307109452705559 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15003007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15003008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15003006 +accuGOVPerShare 4.34911703421 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15003008 Last Reward Block 15003006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15003010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15003009 +accuGOVPerShare 4.349121823325 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15003010 Last Reward Block 15003009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15004001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15004001 Last Reward Block 14862299 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15004003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004002 +accuGOVPerShare 4.350707020395 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15004003 Last Reward Block 15004002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15004005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 184526404702160871086491 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004004 +accuGOVPerShare 4.350710213138 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15004005 Last Reward Block 15004004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 184526404702160871086491 184526.404702160871086491 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 553545752307109452705559 553545.752307109452705559 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15004007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15004008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004006 +accuGOVPerShare 4.350713405881 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15004008 Last Reward Block 15004006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15004010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004009 +accuGOVPerShare 4.350718194996 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15004010 Last Reward Block 15004009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15005001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15005001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15005003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15005002 +accuGOVPerShare 4.352303392066 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15005003 Last Reward Block 15005002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15005005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15005004 +accuGOVPerShare 4.352306584809 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15005005 Last Reward Block 15005004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15005007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15005008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15005006 +accuGOVPerShare 4.352309777552 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15005008 Last Reward Block 15005006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15005010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15005009 +accuGOVPerShare 4.352314566667 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15005010 Last Reward Block 15005009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15006001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15006001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15006003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15006002 +accuGOVPerShare 4.353899763738 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15006003 Last Reward Block 15006002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15006005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15006004 +accuGOVPerShare 4.353902956481 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15006005 Last Reward Block 15006004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15006007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15006008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15006006 +accuGOVPerShare 4.353906149224 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15006008 Last Reward Block 15006006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15006010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15006009 +accuGOVPerShare 4.353910938339 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15006010 Last Reward Block 15006009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15007001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15007001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15007003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15007002 +accuGOVPerShare 4.355496135409 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15007003 Last Reward Block 15007002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15007005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15007004 +accuGOVPerShare 4.355499328152 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15007005 Last Reward Block 15007004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15007007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15007008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15007006 +accuGOVPerShare 4.355502520895 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15007008 Last Reward Block 15007006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15007010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15007009 +accuGOVPerShare 4.35550731001 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15007010 Last Reward Block 15007009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15008001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15008001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15008003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15008002 +accuGOVPerShare 4.357092507081 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15008003 Last Reward Block 15008002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15008005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15008004 +accuGOVPerShare 4.357095699824 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15008005 Last Reward Block 15008004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15008007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15008008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15008006 +accuGOVPerShare 4.357098892567 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15008008 Last Reward Block 15008006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15008010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15008009 +accuGOVPerShare 4.357103681682 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15008010 Last Reward Block 15008009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15009001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15009001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15009003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15009002 +accuGOVPerShare 4.358688878753 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15009003 Last Reward Block 15009002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15009005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15009004 +accuGOVPerShare 4.358692071496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15009005 Last Reward Block 15009004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15009007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15009008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15009006 +accuGOVPerShare 4.358695264239 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15009008 Last Reward Block 15009006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15009010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15009009 +accuGOVPerShare 4.358700053354 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15009010 Last Reward Block 15009009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15010001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15010001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15010003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15010002 +accuGOVPerShare 4.359460578185 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15010003 Last Reward Block 15010002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15010005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15010004 +accuGOVPerShare 4.359463478698 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15010005 Last Reward Block 15010004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15010007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15010008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15010006 +accuGOVPerShare 4.359466379211 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15010008 Last Reward Block 15010006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15010010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15010009 +accuGOVPerShare 4.359470729981 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15010010 Last Reward Block 15010009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15011001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15011001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15011003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15011002 +accuGOVPerShare 4.360910835003 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15011003 Last Reward Block 15011002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15011005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15011004 +accuGOVPerShare 4.360913735516 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15011005 Last Reward Block 15011004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15011007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15011008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15011006 +accuGOVPerShare 4.360916636029 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15011008 Last Reward Block 15011006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15011010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15011009 +accuGOVPerShare 4.360920986799 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15011010 Last Reward Block 15011009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15012001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15012001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15012003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15012002 +accuGOVPerShare 4.36236109182 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15012003 Last Reward Block 15012002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15012005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15012004 +accuGOVPerShare 4.362363992333 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15012005 Last Reward Block 15012004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15012007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15012008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15012006 +accuGOVPerShare 4.362366892846 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15012008 Last Reward Block 15012006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15012010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15012009 +accuGOVPerShare 4.362371243616 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15012010 Last Reward Block 15012009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15013001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15013001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15013003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15013002 +accuGOVPerShare 4.363811348637 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15013003 Last Reward Block 15013002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15013005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15013004 +accuGOVPerShare 4.36381424915 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15013005 Last Reward Block 15013004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15013007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15013008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15013006 +accuGOVPerShare 4.363817149663 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15013008 Last Reward Block 15013006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15013010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15013009 +accuGOVPerShare 4.363821500433 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15013010 Last Reward Block 15013009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15014001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15014001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15014003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15014002 +accuGOVPerShare 4.365261605454 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15014003 Last Reward Block 15014002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15014005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15014004 +accuGOVPerShare 4.365264505967 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15014005 Last Reward Block 15014004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15014007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15014008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15014006 +accuGOVPerShare 4.36526740648 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15014008 Last Reward Block 15014006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15014010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15014009 +accuGOVPerShare 4.36527175725 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15014010 Last Reward Block 15014009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15015001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15015001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15015003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15015002 +accuGOVPerShare 4.366711862271 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15015003 Last Reward Block 15015002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15015005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15015004 +accuGOVPerShare 4.366714762784 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15015005 Last Reward Block 15015004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15015007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15015008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15015006 +accuGOVPerShare 4.366717663297 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15015008 Last Reward Block 15015006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15015010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15015009 +accuGOVPerShare 4.366722014067 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15015010 Last Reward Block 15015009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15016001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15016001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15016003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15016002 +accuGOVPerShare 4.368162119088 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15016003 Last Reward Block 15016002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15016005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15016004 +accuGOVPerShare 4.368165019601 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15016005 Last Reward Block 15016004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15016007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15016008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15016006 +accuGOVPerShare 4.368167920114 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15016008 Last Reward Block 15016006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15016010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15016009 +accuGOVPerShare 4.368172270884 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15016010 Last Reward Block 15016009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15017001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15017001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15017003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15017002 +accuGOVPerShare 4.369612375906 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15017003 Last Reward Block 15017002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15017005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15017004 +accuGOVPerShare 4.369615276419 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15017005 Last Reward Block 15017004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15017007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15017008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15017006 +accuGOVPerShare 4.369618176932 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15017008 Last Reward Block 15017006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15017010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15017009 +accuGOVPerShare 4.369622527702 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15017010 Last Reward Block 15017009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15018001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15018001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15018003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15018002 +accuGOVPerShare 4.371062632723 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15018003 Last Reward Block 15018002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15018005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15018004 +accuGOVPerShare 4.371065533236 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15018005 Last Reward Block 15018004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15018007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15018008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15018006 +accuGOVPerShare 4.371068433749 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15018008 Last Reward Block 15018006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15018010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15018009 +accuGOVPerShare 4.371072784519 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15018010 Last Reward Block 15018009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15019001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15019001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15019003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15019002 +accuGOVPerShare 4.37251288954 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15019003 Last Reward Block 15019002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15019005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15019004 +accuGOVPerShare 4.372515790053 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15019005 Last Reward Block 15019004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15019007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15019008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15019006 +accuGOVPerShare 4.372518690566 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15019008 Last Reward Block 15019006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15019010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15019009 +accuGOVPerShare 4.372523041336 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15019010 Last Reward Block 15019009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15020001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15020001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15020003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15020002 +accuGOVPerShare 4.373963146357 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15020003 Last Reward Block 15020002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15020005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15020004 +accuGOVPerShare 4.37396604687 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15020005 Last Reward Block 15020004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15020007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15020008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15020006 +accuGOVPerShare 4.373968947383 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15020008 Last Reward Block 15020006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15020010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15020009 +accuGOVPerShare 4.373973298153 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15020010 Last Reward Block 15020009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15021001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15021001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15021003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15021002 +accuGOVPerShare 4.375413403174 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15021003 Last Reward Block 15021002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15021005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15021004 +accuGOVPerShare 4.375416303687 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15021005 Last Reward Block 15021004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15021007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15021008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15021006 +accuGOVPerShare 4.3754192042 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15021008 Last Reward Block 15021006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15021010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15021009 +accuGOVPerShare 4.37542355497 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15021010 Last Reward Block 15021009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15022001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15022001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15022003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15022002 +accuGOVPerShare 4.376863659991 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15022003 Last Reward Block 15022002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15022005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15022004 +accuGOVPerShare 4.376866560504 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15022005 Last Reward Block 15022004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15022007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15022008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15022006 +accuGOVPerShare 4.376869461017 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15022008 Last Reward Block 15022006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15022010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15022009 +accuGOVPerShare 4.376873811787 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15022010 Last Reward Block 15022009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15023001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15023001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15023003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15023002 +accuGOVPerShare 4.378313916808 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15023003 Last Reward Block 15023002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15023005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15023004 +accuGOVPerShare 4.378316817321 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15023005 Last Reward Block 15023004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15023007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15023008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15023006 +accuGOVPerShare 4.378319717834 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15023008 Last Reward Block 15023006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15023010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15023009 +accuGOVPerShare 4.378324068604 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15023010 Last Reward Block 15023009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15024001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15024001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15024003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15024002 +accuGOVPerShare 4.379764173626 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15024003 Last Reward Block 15024002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15024005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15024004 +accuGOVPerShare 4.379767074139 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15024005 Last Reward Block 15024004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15024007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15024008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15024006 +accuGOVPerShare 4.379769974652 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15024008 Last Reward Block 15024006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15024010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15024009 +accuGOVPerShare 4.379774325422 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15024010 Last Reward Block 15024009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15025001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15025001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15025003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15025002 +accuGOVPerShare 4.381214430443 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15025003 Last Reward Block 15025002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15025005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15025004 +accuGOVPerShare 4.381217330956 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15025005 Last Reward Block 15025004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15025007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15025008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15025006 +accuGOVPerShare 4.381220231469 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15025008 Last Reward Block 15025006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15025010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15025009 +accuGOVPerShare 4.381224582239 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15025010 Last Reward Block 15025009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15026001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15026001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15026003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15026002 +accuGOVPerShare 4.38266468726 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15026003 Last Reward Block 15026002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15026005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15026004 +accuGOVPerShare 4.382667587773 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15026005 Last Reward Block 15026004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15026007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15026008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15026006 +accuGOVPerShare 4.382670488286 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15026008 Last Reward Block 15026006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15026010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15026009 +accuGOVPerShare 4.382674839056 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15026010 Last Reward Block 15026009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15027001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15027001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15027003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15027002 +accuGOVPerShare 4.384114944077 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15027003 Last Reward Block 15027002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15027005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15027004 +accuGOVPerShare 4.38411784459 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15027005 Last Reward Block 15027004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15027007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15027008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15027006 +accuGOVPerShare 4.384120745103 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15027008 Last Reward Block 15027006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15027010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15027009 +accuGOVPerShare 4.384125095873 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15027010 Last Reward Block 15027009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15028001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15028001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15028003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15028002 +accuGOVPerShare 4.385565200894 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15028003 Last Reward Block 15028002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15028005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15028004 +accuGOVPerShare 4.385568101407 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15028005 Last Reward Block 15028004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15028007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15028008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15028006 +accuGOVPerShare 4.38557100192 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15028008 Last Reward Block 15028006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15028010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15028009 +accuGOVPerShare 4.38557535269 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15028010 Last Reward Block 15028009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15029001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15029001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15029003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15029002 +accuGOVPerShare 4.387015457711 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15029003 Last Reward Block 15029002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15029005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15029004 +accuGOVPerShare 4.387018358224 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15029005 Last Reward Block 15029004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15029007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15029008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15029006 +accuGOVPerShare 4.387021258737 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15029008 Last Reward Block 15029006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15029010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15029009 +accuGOVPerShare 4.387025609507 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15029010 Last Reward Block 15029009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15030001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15030001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15030003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15030002 +accuGOVPerShare 4.388465714528 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15030003 Last Reward Block 15030002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15030005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15030004 +accuGOVPerShare 4.388468615041 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15030005 Last Reward Block 15030004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15030007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15030008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15030006 +accuGOVPerShare 4.388471515554 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15030008 Last Reward Block 15030006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15030010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15030009 +accuGOVPerShare 4.388475866324 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15030010 Last Reward Block 15030009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15031001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15031001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15031003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15031002 +accuGOVPerShare 4.389915971346 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15031003 Last Reward Block 15031002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15031005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15031004 +accuGOVPerShare 4.389918871859 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15031005 Last Reward Block 15031004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15031007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15031008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15031006 +accuGOVPerShare 4.389921772372 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15031008 Last Reward Block 15031006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15031010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15031009 +accuGOVPerShare 4.389926123142 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15031010 Last Reward Block 15031009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15032001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15032001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15032003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15032002 +accuGOVPerShare 4.391366228163 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15032003 Last Reward Block 15032002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15032005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15032004 +accuGOVPerShare 4.391369128676 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15032005 Last Reward Block 15032004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15032007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15032008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15032006 +accuGOVPerShare 4.391372029189 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15032008 Last Reward Block 15032006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15032010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15032009 +accuGOVPerShare 4.391376379959 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15032010 Last Reward Block 15032009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15033001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15033001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15033003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15033002 +accuGOVPerShare 4.39281648498 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15033003 Last Reward Block 15033002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15033005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15033004 +accuGOVPerShare 4.392819385493 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15033005 Last Reward Block 15033004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15033007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15033008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15033006 +accuGOVPerShare 4.392822286006 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15033008 Last Reward Block 15033006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15033010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15033009 +accuGOVPerShare 4.392826636776 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15033010 Last Reward Block 15033009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15034001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15034001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15034003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15034002 +accuGOVPerShare 4.394266741797 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15034003 Last Reward Block 15034002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15034005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15034004 +accuGOVPerShare 4.39426964231 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15034005 Last Reward Block 15034004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15034007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15034008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15034006 +accuGOVPerShare 4.394272542823 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15034008 Last Reward Block 15034006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15034010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15034009 +accuGOVPerShare 4.394276893593 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15034010 Last Reward Block 15034009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15035001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15035001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15035003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15035002 +accuGOVPerShare 4.395716998614 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15035003 Last Reward Block 15035002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15035005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15035004 +accuGOVPerShare 4.395719899127 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15035005 Last Reward Block 15035004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15035007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15035008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15035006 +accuGOVPerShare 4.39572279964 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15035008 Last Reward Block 15035006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15035010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15035009 +accuGOVPerShare 4.39572715041 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15035010 Last Reward Block 15035009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15036001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15036001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15036003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15036002 +accuGOVPerShare 4.397167255431 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15036003 Last Reward Block 15036002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15036005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15036004 +accuGOVPerShare 4.397170155944 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15036005 Last Reward Block 15036004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15036007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15036008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15036006 +accuGOVPerShare 4.397173056457 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15036008 Last Reward Block 15036006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15036010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15036009 +accuGOVPerShare 4.397177407227 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15036010 Last Reward Block 15036009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15037001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15037001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15037003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15037002 +accuGOVPerShare 4.398617512248 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15037003 Last Reward Block 15037002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15037005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15037004 +accuGOVPerShare 4.398620412761 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15037005 Last Reward Block 15037004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15037007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15037008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15037006 +accuGOVPerShare 4.398623313274 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15037008 Last Reward Block 15037006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15037010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15037009 +accuGOVPerShare 4.398627664044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15037010 Last Reward Block 15037009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15038001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15038001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15038003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15038002 +accuGOVPerShare 4.400067769066 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15038003 Last Reward Block 15038002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15038005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15038004 +accuGOVPerShare 4.400070669579 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15038005 Last Reward Block 15038004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15038007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15038008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15038006 +accuGOVPerShare 4.400073570092 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15038008 Last Reward Block 15038006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15038010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15038009 +accuGOVPerShare 4.400077920862 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15038010 Last Reward Block 15038009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15039001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15039001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15039003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15039002 +accuGOVPerShare 4.401518025883 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15039003 Last Reward Block 15039002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15039005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15039004 +accuGOVPerShare 4.401520926396 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15039005 Last Reward Block 15039004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15039007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15039008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15039006 +accuGOVPerShare 4.401523826909 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15039008 Last Reward Block 15039006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15039010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15039009 +accuGOVPerShare 4.401528177679 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15039010 Last Reward Block 15039009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15040001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15040001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15040003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15040002 +accuGOVPerShare 4.4029682827 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15040003 Last Reward Block 15040002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15040005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15040004 +accuGOVPerShare 4.402971183213 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15040005 Last Reward Block 15040004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15040007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15040008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15040006 +accuGOVPerShare 4.402974083726 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15040008 Last Reward Block 15040006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15040010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15040009 +accuGOVPerShare 4.402978434496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15040010 Last Reward Block 15040009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15041001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15041001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15041003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15041002 +accuGOVPerShare 4.404418539517 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15041003 Last Reward Block 15041002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15041005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15041004 +accuGOVPerShare 4.40442144003 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15041005 Last Reward Block 15041004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15041007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15041008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15041006 +accuGOVPerShare 4.404424340543 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15041008 Last Reward Block 15041006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15041010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15041009 +accuGOVPerShare 4.404428691313 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15041010 Last Reward Block 15041009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15042001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15042001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15042003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15042002 +accuGOVPerShare 4.405868796334 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15042003 Last Reward Block 15042002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15042005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15042004 +accuGOVPerShare 4.405871696847 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15042005 Last Reward Block 15042004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15042007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15042008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15042006 +accuGOVPerShare 4.40587459736 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15042008 Last Reward Block 15042006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15042010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15042009 +accuGOVPerShare 4.40587894813 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15042010 Last Reward Block 15042009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15043001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15043001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15043003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15043002 +accuGOVPerShare 4.407319053151 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15043003 Last Reward Block 15043002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15043005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15043004 +accuGOVPerShare 4.407321953664 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15043005 Last Reward Block 15043004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15043007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15043008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15043006 +accuGOVPerShare 4.407324854177 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15043008 Last Reward Block 15043006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15043010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15043009 +accuGOVPerShare 4.407329204947 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15043010 Last Reward Block 15043009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15044001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15044001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15044003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15044002 +accuGOVPerShare 4.408769309968 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15044003 Last Reward Block 15044002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15044005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15044004 +accuGOVPerShare 4.408772210481 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15044005 Last Reward Block 15044004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15044007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15044008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15044006 +accuGOVPerShare 4.408775110994 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15044008 Last Reward Block 15044006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15044010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15044009 +accuGOVPerShare 4.408779461764 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15044010 Last Reward Block 15044009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15045001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15045001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15045003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15045002 +accuGOVPerShare 4.410219566786 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15045003 Last Reward Block 15045002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15045005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15045004 +accuGOVPerShare 4.410222467299 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15045005 Last Reward Block 15045004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15045007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15045008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15045006 +accuGOVPerShare 4.410225367812 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15045008 Last Reward Block 15045006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15045010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15045009 +accuGOVPerShare 4.410229718582 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15045010 Last Reward Block 15045009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15046001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15046001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15046003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15046002 +accuGOVPerShare 4.411669823603 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15046003 Last Reward Block 15046002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15046005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15046004 +accuGOVPerShare 4.411672724116 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15046005 Last Reward Block 15046004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15046007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15046008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15046006 +accuGOVPerShare 4.411675624629 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15046008 Last Reward Block 15046006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15046010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15046009 +accuGOVPerShare 4.411679975399 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15046010 Last Reward Block 15046009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15047001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15047001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15047003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15047002 +accuGOVPerShare 4.41312008042 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15047003 Last Reward Block 15047002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15047005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15047004 +accuGOVPerShare 4.413122980933 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15047005 Last Reward Block 15047004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15047007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15047008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15047006 +accuGOVPerShare 4.413125881446 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15047008 Last Reward Block 15047006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15047010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15047009 +accuGOVPerShare 4.413130232216 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15047010 Last Reward Block 15047009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15048001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15048001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15048003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15048002 +accuGOVPerShare 4.414570337237 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15048003 Last Reward Block 15048002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15048005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15048004 +accuGOVPerShare 4.41457323775 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15048005 Last Reward Block 15048004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15048007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15048008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15048006 +accuGOVPerShare 4.414576138263 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15048008 Last Reward Block 15048006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15048010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15048009 +accuGOVPerShare 4.414580489033 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15048010 Last Reward Block 15048009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15049001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15049001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15049003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15049002 +accuGOVPerShare 4.416020594054 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15049003 Last Reward Block 15049002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15049005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15049004 +accuGOVPerShare 4.416023494567 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15049005 Last Reward Block 15049004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15049007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15049008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15049006 +accuGOVPerShare 4.41602639508 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15049008 Last Reward Block 15049006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15049010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15049009 +accuGOVPerShare 4.41603074585 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15049010 Last Reward Block 15049009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15050001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15050001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15050003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15050002 +accuGOVPerShare 4.417470850871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15050003 Last Reward Block 15050002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15050005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15050004 +accuGOVPerShare 4.417473751384 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15050005 Last Reward Block 15050004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15050007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15050008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15050006 +accuGOVPerShare 4.417476651897 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15050008 Last Reward Block 15050006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15050010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15050009 +accuGOVPerShare 4.417481002667 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15050010 Last Reward Block 15050009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15051001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15051001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15051003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15051002 +accuGOVPerShare 4.418921107689 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15051003 Last Reward Block 15051002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15051005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15051004 +accuGOVPerShare 4.418924008202 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15051005 Last Reward Block 15051004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15051007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15051008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15051006 +accuGOVPerShare 4.418926908715 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15051008 Last Reward Block 15051006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15051010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15051009 +accuGOVPerShare 4.418931259485 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15051010 Last Reward Block 15051009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15052001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15052001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15052003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15052002 +accuGOVPerShare 4.420371364506 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15052003 Last Reward Block 15052002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15052005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15052004 +accuGOVPerShare 4.420374265019 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15052005 Last Reward Block 15052004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15052007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15052008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15052006 +accuGOVPerShare 4.420377165532 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15052008 Last Reward Block 15052006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15052010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15052009 +accuGOVPerShare 4.420381516302 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15052010 Last Reward Block 15052009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15053001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15053001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15053003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15053002 +accuGOVPerShare 4.421821621323 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15053003 Last Reward Block 15053002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15053005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15053004 +accuGOVPerShare 4.421824521836 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15053005 Last Reward Block 15053004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15053007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15053008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15053006 +accuGOVPerShare 4.421827422349 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15053008 Last Reward Block 15053006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15053010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15053009 +accuGOVPerShare 4.421831773119 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15053010 Last Reward Block 15053009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15054001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15054001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15054003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15054002 +accuGOVPerShare 4.42327187814 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15054003 Last Reward Block 15054002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15054005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15054004 +accuGOVPerShare 4.423274778653 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15054005 Last Reward Block 15054004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15054007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15054008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15054006 +accuGOVPerShare 4.423277679166 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15054008 Last Reward Block 15054006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15054010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15054009 +accuGOVPerShare 4.423282029936 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15054010 Last Reward Block 15054009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15055001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15055001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15055003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15055002 +accuGOVPerShare 4.424722134957 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15055003 Last Reward Block 15055002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15055005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15055004 +accuGOVPerShare 4.42472503547 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15055005 Last Reward Block 15055004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15055007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15055008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15055006 +accuGOVPerShare 4.424727935983 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15055008 Last Reward Block 15055006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15055010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15055009 +accuGOVPerShare 4.424732286753 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15055010 Last Reward Block 15055009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15056001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15056001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15056003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15056002 +accuGOVPerShare 4.426172391774 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15056003 Last Reward Block 15056002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15056005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15056004 +accuGOVPerShare 4.426175292287 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15056005 Last Reward Block 15056004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15056007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15056008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15056006 +accuGOVPerShare 4.4261781928 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15056008 Last Reward Block 15056006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15056010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15056009 +accuGOVPerShare 4.42618254357 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15056010 Last Reward Block 15056009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15057001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15057001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15057003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15057002 +accuGOVPerShare 4.427622648591 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15057003 Last Reward Block 15057002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15057005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15057004 +accuGOVPerShare 4.427625549104 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15057005 Last Reward Block 15057004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15057007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15057008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15057006 +accuGOVPerShare 4.427628449617 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15057008 Last Reward Block 15057006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15057010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15057009 +accuGOVPerShare 4.427632800387 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15057010 Last Reward Block 15057009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15058001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15058001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15058003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15058002 +accuGOVPerShare 4.429072905409 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15058003 Last Reward Block 15058002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15058005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15058004 +accuGOVPerShare 4.429075805922 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15058005 Last Reward Block 15058004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15058007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15058008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15058006 +accuGOVPerShare 4.429078706435 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15058008 Last Reward Block 15058006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15058010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15058009 +accuGOVPerShare 4.429083057205 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15058010 Last Reward Block 15058009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15059001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15059001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15059003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15059002 +accuGOVPerShare 4.430523162226 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15059003 Last Reward Block 15059002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15059005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15059004 +accuGOVPerShare 4.430526062739 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15059005 Last Reward Block 15059004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15059007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15059008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15059006 +accuGOVPerShare 4.430528963252 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15059008 Last Reward Block 15059006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15059010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15059009 +accuGOVPerShare 4.430533314022 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15059010 Last Reward Block 15059009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15060001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15060001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15060003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15060002 +accuGOVPerShare 4.431973419043 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15060003 Last Reward Block 15060002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15060005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15060004 +accuGOVPerShare 4.431976319556 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15060005 Last Reward Block 15060004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15060007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15060008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15060006 +accuGOVPerShare 4.431979220069 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15060008 Last Reward Block 15060006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15060010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15060009 +accuGOVPerShare 4.431983570839 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15060010 Last Reward Block 15060009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15061001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15061001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15061003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15061002 +accuGOVPerShare 4.43342367586 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15061003 Last Reward Block 15061002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15061005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15061004 +accuGOVPerShare 4.433426576373 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15061005 Last Reward Block 15061004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15061007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15061008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15061006 +accuGOVPerShare 4.433429476886 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15061008 Last Reward Block 15061006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15061010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15061009 +accuGOVPerShare 4.433433827656 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15061010 Last Reward Block 15061009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15062001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15062001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15062003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15062002 +accuGOVPerShare 4.434873932677 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15062003 Last Reward Block 15062002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15062005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15062004 +accuGOVPerShare 4.43487683319 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15062005 Last Reward Block 15062004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15062007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15062008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15062006 +accuGOVPerShare 4.434879733703 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15062008 Last Reward Block 15062006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15062010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15062009 +accuGOVPerShare 4.434884084473 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15062010 Last Reward Block 15062009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15063001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15063001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15063003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15063002 +accuGOVPerShare 4.436324189494 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15063003 Last Reward Block 15063002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15063005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15063004 +accuGOVPerShare 4.436327090007 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15063005 Last Reward Block 15063004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15063007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15063008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15063006 +accuGOVPerShare 4.43632999052 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15063008 Last Reward Block 15063006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15063010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15063009 +accuGOVPerShare 4.43633434129 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15063010 Last Reward Block 15063009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15064001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15064001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15064003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15064002 +accuGOVPerShare 4.437774446311 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15064003 Last Reward Block 15064002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15064005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15064004 +accuGOVPerShare 4.437777346824 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15064005 Last Reward Block 15064004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15064007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15064008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15064006 +accuGOVPerShare 4.437780247337 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15064008 Last Reward Block 15064006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15064010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15064009 +accuGOVPerShare 4.437784598107 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15064010 Last Reward Block 15064009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15065001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15065001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15065003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15065002 +accuGOVPerShare 4.439224703129 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15065003 Last Reward Block 15065002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15065005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15065004 +accuGOVPerShare 4.439227603642 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15065005 Last Reward Block 15065004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15065007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15065008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15065006 +accuGOVPerShare 4.439230504155 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15065008 Last Reward Block 15065006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15065010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15065009 +accuGOVPerShare 4.439234854925 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15065010 Last Reward Block 15065009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15066001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15066001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15066003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15066002 +accuGOVPerShare 4.440674959946 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15066003 Last Reward Block 15066002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15066005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15066004 +accuGOVPerShare 4.440677860459 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15066005 Last Reward Block 15066004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15066007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15066008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15066006 +accuGOVPerShare 4.440680760972 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15066008 Last Reward Block 15066006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15066010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15066009 +accuGOVPerShare 4.440685111742 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15066010 Last Reward Block 15066009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15067001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15067001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15067003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15067002 +accuGOVPerShare 4.442125216763 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15067003 Last Reward Block 15067002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15067005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15067004 +accuGOVPerShare 4.442128117276 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15067005 Last Reward Block 15067004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15067007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15067008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15067006 +accuGOVPerShare 4.442131017789 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15067008 Last Reward Block 15067006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15067010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15067009 +accuGOVPerShare 4.442135368559 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15067010 Last Reward Block 15067009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15068001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15068001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15068003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15068002 +accuGOVPerShare 4.44357547358 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15068003 Last Reward Block 15068002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15068005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15068004 +accuGOVPerShare 4.443578374093 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15068005 Last Reward Block 15068004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15068007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15068008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15068006 +accuGOVPerShare 4.443581274606 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15068008 Last Reward Block 15068006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15068010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15068009 +accuGOVPerShare 4.443585625376 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15068010 Last Reward Block 15068009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15069001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15069001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15069003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15069002 +accuGOVPerShare 4.445025730397 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15069003 Last Reward Block 15069002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15069005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15069004 +accuGOVPerShare 4.44502863091 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15069005 Last Reward Block 15069004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15069007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15069008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15069006 +accuGOVPerShare 4.445031531423 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15069008 Last Reward Block 15069006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15069010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15069009 +accuGOVPerShare 4.445035882193 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15069010 Last Reward Block 15069009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15070001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15070001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15070003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15070002 +accuGOVPerShare 4.446475987214 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15070003 Last Reward Block 15070002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15070005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15070004 +accuGOVPerShare 4.446478887727 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15070005 Last Reward Block 15070004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15070007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15070008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15070006 +accuGOVPerShare 4.44648178824 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15070008 Last Reward Block 15070006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15070010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15070009 +accuGOVPerShare 4.44648613901 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15070010 Last Reward Block 15070009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15071001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15071001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15071003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15071002 +accuGOVPerShare 4.447926244031 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15071003 Last Reward Block 15071002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15071005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15071004 +accuGOVPerShare 4.447929144544 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15071005 Last Reward Block 15071004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15071007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15071008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15071006 +accuGOVPerShare 4.447932045057 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15071008 Last Reward Block 15071006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15071010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15071009 +accuGOVPerShare 4.447936395827 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15071010 Last Reward Block 15071009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15072001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15072001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15072003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15072002 +accuGOVPerShare 4.449376500849 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15072003 Last Reward Block 15072002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15072005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15072004 +accuGOVPerShare 4.449379401362 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15072005 Last Reward Block 15072004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15072007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15072008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15072006 +accuGOVPerShare 4.449382301875 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15072008 Last Reward Block 15072006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15072010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15072009 +accuGOVPerShare 4.449386652645 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15072010 Last Reward Block 15072009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15073001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15073001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15073003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15073002 +accuGOVPerShare 4.450826757666 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15073003 Last Reward Block 15073002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15073005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15073004 +accuGOVPerShare 4.450829658179 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15073005 Last Reward Block 15073004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15073007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15073008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15073006 +accuGOVPerShare 4.450832558692 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15073008 Last Reward Block 15073006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15073010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15073009 +accuGOVPerShare 4.450836909462 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15073010 Last Reward Block 15073009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15074001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15074001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15074003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15074002 +accuGOVPerShare 4.452277014483 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15074003 Last Reward Block 15074002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15074005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15074004 +accuGOVPerShare 4.452279914996 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15074005 Last Reward Block 15074004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15074007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15074008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15074006 +accuGOVPerShare 4.452282815509 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15074008 Last Reward Block 15074006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15074010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15074009 +accuGOVPerShare 4.452287166279 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15074010 Last Reward Block 15074009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15075001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15075001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15075003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15075002 +accuGOVPerShare 4.4537272713 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15075003 Last Reward Block 15075002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15075005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15075004 +accuGOVPerShare 4.453730171813 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15075005 Last Reward Block 15075004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15075007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15075008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15075006 +accuGOVPerShare 4.453733072326 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15075008 Last Reward Block 15075006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15075010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15075009 +accuGOVPerShare 4.453737423096 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15075010 Last Reward Block 15075009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15076001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15076001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15076003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15076002 +accuGOVPerShare 4.455177528117 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15076003 Last Reward Block 15076002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15076005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15076004 +accuGOVPerShare 4.45518042863 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15076005 Last Reward Block 15076004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15076007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15076008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15076006 +accuGOVPerShare 4.455183329143 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15076008 Last Reward Block 15076006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15076010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15076009 +accuGOVPerShare 4.455187679913 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15076010 Last Reward Block 15076009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15077001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15077001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15077003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15077002 +accuGOVPerShare 4.456627784934 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15077003 Last Reward Block 15077002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15077005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15077004 +accuGOVPerShare 4.456630685447 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15077005 Last Reward Block 15077004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15077007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15077008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15077006 +accuGOVPerShare 4.45663358596 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15077008 Last Reward Block 15077006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15077010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15077009 +accuGOVPerShare 4.45663793673 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15077010 Last Reward Block 15077009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15078001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15078001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15078003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15078002 +accuGOVPerShare 4.458078041751 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15078003 Last Reward Block 15078002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15078005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15078004 +accuGOVPerShare 4.458080942264 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15078005 Last Reward Block 15078004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15078007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15078008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15078006 +accuGOVPerShare 4.458083842777 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15078008 Last Reward Block 15078006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15078010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15078009 +accuGOVPerShare 4.458088193547 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15078010 Last Reward Block 15078009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15079001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15079001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15079003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15079002 +accuGOVPerShare 4.459528298569 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15079003 Last Reward Block 15079002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15079005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15079004 +accuGOVPerShare 4.459531199082 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15079005 Last Reward Block 15079004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15079007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15079008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15079006 +accuGOVPerShare 4.459534099595 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15079008 Last Reward Block 15079006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15079010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15079009 +accuGOVPerShare 4.459538450365 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15079010 Last Reward Block 15079009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15080001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15080001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15080003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15080002 +accuGOVPerShare 4.460978555386 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15080003 Last Reward Block 15080002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15080005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15080004 +accuGOVPerShare 4.460981455899 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15080005 Last Reward Block 15080004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15080007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15080008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15080006 +accuGOVPerShare 4.460984356412 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15080008 Last Reward Block 15080006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15080010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15080009 +accuGOVPerShare 4.460988707182 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15080010 Last Reward Block 15080009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15081001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15081001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15081003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15081002 +accuGOVPerShare 4.462428812203 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15081003 Last Reward Block 15081002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15081005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15081004 +accuGOVPerShare 4.462431712716 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15081005 Last Reward Block 15081004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15081007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15081008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15081006 +accuGOVPerShare 4.462434613229 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15081008 Last Reward Block 15081006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15081010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15081009 +accuGOVPerShare 4.462438963999 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15081010 Last Reward Block 15081009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15082001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15082001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15082003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15082002 +accuGOVPerShare 4.46387906902 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15082003 Last Reward Block 15082002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15082005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15082004 +accuGOVPerShare 4.463881969533 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15082005 Last Reward Block 15082004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15082007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15082008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15082006 +accuGOVPerShare 4.463884870046 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15082008 Last Reward Block 15082006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15082010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15082009 +accuGOVPerShare 4.463889220816 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15082010 Last Reward Block 15082009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15083001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15083001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15083003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15083002 +accuGOVPerShare 4.465329325837 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15083003 Last Reward Block 15083002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15083005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15083004 +accuGOVPerShare 4.46533222635 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15083005 Last Reward Block 15083004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15083007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15083008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15083006 +accuGOVPerShare 4.465335126863 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15083008 Last Reward Block 15083006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15083010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15083009 +accuGOVPerShare 4.465339477633 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15083010 Last Reward Block 15083009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15084001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15084001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15084003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15084002 +accuGOVPerShare 4.466779582654 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15084003 Last Reward Block 15084002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15084005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15084004 +accuGOVPerShare 4.466782483167 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15084005 Last Reward Block 15084004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15084007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15084008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15084006 +accuGOVPerShare 4.46678538368 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15084008 Last Reward Block 15084006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15084010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15084009 +accuGOVPerShare 4.46678973445 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15084010 Last Reward Block 15084009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15085001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15085001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15085003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15085002 +accuGOVPerShare 4.468229839472 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15085003 Last Reward Block 15085002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15085005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15085004 +accuGOVPerShare 4.468232739985 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15085005 Last Reward Block 15085004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15085007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15085008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15085006 +accuGOVPerShare 4.468235640498 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15085008 Last Reward Block 15085006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15085010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15085009 +accuGOVPerShare 4.468239991268 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15085010 Last Reward Block 15085009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15086001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15086001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15086003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15086002 +accuGOVPerShare 4.469680096289 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15086003 Last Reward Block 15086002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15086005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15086004 +accuGOVPerShare 4.469682996802 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15086005 Last Reward Block 15086004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15086007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15086008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15086006 +accuGOVPerShare 4.469685897315 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15086008 Last Reward Block 15086006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15086010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15086009 +accuGOVPerShare 4.469690248085 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15086010 Last Reward Block 15086009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15087001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15087001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15087003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15087002 +accuGOVPerShare 4.471130353106 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15087003 Last Reward Block 15087002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15087005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15087004 +accuGOVPerShare 4.471133253619 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15087005 Last Reward Block 15087004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15087007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15087008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15087006 +accuGOVPerShare 4.471136154132 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15087008 Last Reward Block 15087006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15087010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15087009 +accuGOVPerShare 4.471140504902 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15087010 Last Reward Block 15087009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15088001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15088001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15088003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15088002 +accuGOVPerShare 4.472580609923 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15088003 Last Reward Block 15088002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15088005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15088004 +accuGOVPerShare 4.472583510436 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15088005 Last Reward Block 15088004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15088007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15088008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15088006 +accuGOVPerShare 4.472586410949 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15088008 Last Reward Block 15088006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15088010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15088009 +accuGOVPerShare 4.472590761719 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15088010 Last Reward Block 15088009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15089001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15089001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15089003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15089002 +accuGOVPerShare 4.47403086674 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15089003 Last Reward Block 15089002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15089005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15089004 +accuGOVPerShare 4.474033767253 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15089005 Last Reward Block 15089004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15089007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15089008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15089006 +accuGOVPerShare 4.474036667766 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15089008 Last Reward Block 15089006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15089010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15089009 +accuGOVPerShare 4.474041018536 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15089010 Last Reward Block 15089009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15090001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15090001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15090003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15090002 +accuGOVPerShare 4.475481123557 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15090003 Last Reward Block 15090002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15090005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15090004 +accuGOVPerShare 4.47548402407 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15090005 Last Reward Block 15090004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15090007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15090008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15090006 +accuGOVPerShare 4.475486924583 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15090008 Last Reward Block 15090006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15090010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15090009 +accuGOVPerShare 4.475491275353 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15090010 Last Reward Block 15090009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15091001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15091001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15091003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15091002 +accuGOVPerShare 4.476931380374 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15091003 Last Reward Block 15091002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15091005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15091004 +accuGOVPerShare 4.476934280887 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15091005 Last Reward Block 15091004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15091007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15091008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15091006 +accuGOVPerShare 4.4769371814 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15091008 Last Reward Block 15091006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15091010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15091009 +accuGOVPerShare 4.47694153217 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15091010 Last Reward Block 15091009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15092001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15092001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15092003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15092002 +accuGOVPerShare 4.478381637192 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15092003 Last Reward Block 15092002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15092005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15092004 +accuGOVPerShare 4.478384537705 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15092005 Last Reward Block 15092004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15092007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15092008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15092006 +accuGOVPerShare 4.478387438218 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15092008 Last Reward Block 15092006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15092010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15092009 +accuGOVPerShare 4.478391788988 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15092010 Last Reward Block 15092009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15093001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15093001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15093003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15093002 +accuGOVPerShare 4.479831894009 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15093003 Last Reward Block 15093002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15093005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15093004 +accuGOVPerShare 4.479834794522 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15093005 Last Reward Block 15093004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15093007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15093008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15093006 +accuGOVPerShare 4.479837695035 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15093008 Last Reward Block 15093006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15093010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15093009 +accuGOVPerShare 4.479842045805 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15093010 Last Reward Block 15093009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15094001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15094001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15094003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15094002 +accuGOVPerShare 4.481282150826 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15094003 Last Reward Block 15094002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15094005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15094004 +accuGOVPerShare 4.481285051339 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15094005 Last Reward Block 15094004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15094007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15094008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15094006 +accuGOVPerShare 4.481287951852 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15094008 Last Reward Block 15094006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15094010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15094009 +accuGOVPerShare 4.481292302622 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15094010 Last Reward Block 15094009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15095001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15095001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15095003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15095002 +accuGOVPerShare 4.482732407643 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15095003 Last Reward Block 15095002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15095005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15095004 +accuGOVPerShare 4.482735308156 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15095005 Last Reward Block 15095004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15095007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15095008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15095006 +accuGOVPerShare 4.482738208669 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15095008 Last Reward Block 15095006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15095010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15095009 +accuGOVPerShare 4.482742559439 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15095010 Last Reward Block 15095009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15096001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15096001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15096003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15096002 +accuGOVPerShare 4.48418266446 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15096003 Last Reward Block 15096002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15096005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15096004 +accuGOVPerShare 4.484185564973 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15096005 Last Reward Block 15096004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15096007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15096008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15096006 +accuGOVPerShare 4.484188465486 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15096008 Last Reward Block 15096006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15096010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15096009 +accuGOVPerShare 4.484192816256 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15096010 Last Reward Block 15096009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15097001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15097001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15097003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15097002 +accuGOVPerShare 4.485632921277 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15097003 Last Reward Block 15097002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15097005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15097004 +accuGOVPerShare 4.48563582179 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15097005 Last Reward Block 15097004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15097007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15097008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15097006 +accuGOVPerShare 4.485638722303 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15097008 Last Reward Block 15097006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15097010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15097009 +accuGOVPerShare 4.485643073073 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15097010 Last Reward Block 15097009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15098001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15098001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15098003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15098002 +accuGOVPerShare 4.487083178094 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15098003 Last Reward Block 15098002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15098005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15098004 +accuGOVPerShare 4.487086078607 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15098005 Last Reward Block 15098004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15098007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15098008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15098006 +accuGOVPerShare 4.48708897912 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15098008 Last Reward Block 15098006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15098010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15098009 +accuGOVPerShare 4.48709332989 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15098010 Last Reward Block 15098009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15099001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15099001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15099003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15099002 +accuGOVPerShare 4.488533434912 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15099003 Last Reward Block 15099002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15099005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15099004 +accuGOVPerShare 4.488536335425 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15099005 Last Reward Block 15099004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15099007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15099008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15099006 +accuGOVPerShare 4.488539235938 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15099008 Last Reward Block 15099006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15099010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15099009 +accuGOVPerShare 4.488543586708 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15099010 Last Reward Block 15099009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15100001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15100001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15100003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15100002 +accuGOVPerShare 4.489983691729 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15100003 Last Reward Block 15100002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15100005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15100004 +accuGOVPerShare 4.489986592242 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15100005 Last Reward Block 15100004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15100007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15100008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15100006 +accuGOVPerShare 4.489989492755 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15100008 Last Reward Block 15100006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15100010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15100009 +accuGOVPerShare 4.489993843525 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15100010 Last Reward Block 15100009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15101001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15101001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15101003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15101002 +accuGOVPerShare 4.491433948546 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15101003 Last Reward Block 15101002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15101005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15101004 +accuGOVPerShare 4.491436849059 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15101005 Last Reward Block 15101004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15101007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15101008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15101006 +accuGOVPerShare 4.491439749572 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15101008 Last Reward Block 15101006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15101010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15101009 +accuGOVPerShare 4.491444100342 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15101010 Last Reward Block 15101009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15102001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15102001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15102003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15102002 +accuGOVPerShare 4.492884205363 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15102003 Last Reward Block 15102002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15102005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15102004 +accuGOVPerShare 4.492887105876 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15102005 Last Reward Block 15102004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15102007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15102008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15102006 +accuGOVPerShare 4.492890006389 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15102008 Last Reward Block 15102006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15102010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15102009 +accuGOVPerShare 4.492894357159 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15102010 Last Reward Block 15102009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15103001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15103001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15103003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15103002 +accuGOVPerShare 4.49433446218 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15103003 Last Reward Block 15103002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15103005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15103004 +accuGOVPerShare 4.494337362693 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15103005 Last Reward Block 15103004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15103007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15103008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15103006 +accuGOVPerShare 4.494340263206 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15103008 Last Reward Block 15103006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15103010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15103009 +accuGOVPerShare 4.494344613976 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15103010 Last Reward Block 15103009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15104001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15104001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15104003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15104002 +accuGOVPerShare 4.495784718997 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15104003 Last Reward Block 15104002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15104005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15104004 +accuGOVPerShare 4.49578761951 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15104005 Last Reward Block 15104004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15104007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15104008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15104006 +accuGOVPerShare 4.495790520023 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15104008 Last Reward Block 15104006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15104010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15104009 +accuGOVPerShare 4.495794870793 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15104010 Last Reward Block 15104009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15105001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15105001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15105003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15105002 +accuGOVPerShare 4.497234975814 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15105003 Last Reward Block 15105002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15105005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15105004 +accuGOVPerShare 4.497237876327 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15105005 Last Reward Block 15105004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15105007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15105008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15105006 +accuGOVPerShare 4.49724077684 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15105008 Last Reward Block 15105006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15105010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15105009 +accuGOVPerShare 4.49724512761 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15105010 Last Reward Block 15105009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15106001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15106001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15106003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15106002 +accuGOVPerShare 4.498685232632 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15106003 Last Reward Block 15106002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15106005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15106004 +accuGOVPerShare 4.498688133145 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15106005 Last Reward Block 15106004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15106007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15106008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15106006 +accuGOVPerShare 4.498691033658 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15106008 Last Reward Block 15106006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15106010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15106009 +accuGOVPerShare 4.498695384428 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15106010 Last Reward Block 15106009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15107001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15107001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15107003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15107002 +accuGOVPerShare 4.500135489449 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15107003 Last Reward Block 15107002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15107005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15107004 +accuGOVPerShare 4.500138389962 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15107005 Last Reward Block 15107004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15107007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15107008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15107006 +accuGOVPerShare 4.500141290475 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15107008 Last Reward Block 15107006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15107010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15107009 +accuGOVPerShare 4.500145641245 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15107010 Last Reward Block 15107009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15108001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15108001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15108003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15108002 +accuGOVPerShare 4.501585746266 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15108003 Last Reward Block 15108002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15108005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15108004 +accuGOVPerShare 4.501588646779 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15108005 Last Reward Block 15108004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15108007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15108008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15108006 +accuGOVPerShare 4.501591547292 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15108008 Last Reward Block 15108006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15108010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15108009 +accuGOVPerShare 4.501595898062 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15108010 Last Reward Block 15108009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15109001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15109001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15109003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15109002 +accuGOVPerShare 4.503036003083 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15109003 Last Reward Block 15109002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15109005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15109004 +accuGOVPerShare 4.503038903596 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15109005 Last Reward Block 15109004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15109007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15109008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15109006 +accuGOVPerShare 4.503041804109 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15109008 Last Reward Block 15109006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15109010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15109009 +accuGOVPerShare 4.503046154879 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15109010 Last Reward Block 15109009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15110001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15110001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15110003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15110002 +accuGOVPerShare 4.5044862599 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15110003 Last Reward Block 15110002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15110005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15110004 +accuGOVPerShare 4.504489160413 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15110005 Last Reward Block 15110004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15110007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15110008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15110006 +accuGOVPerShare 4.504492060926 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15110008 Last Reward Block 15110006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15110010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15110009 +accuGOVPerShare 4.504496411696 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15110010 Last Reward Block 15110009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15111001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15111001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15111003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15111002 +accuGOVPerShare 4.505936516717 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15111003 Last Reward Block 15111002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15111005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15111004 +accuGOVPerShare 4.50593941723 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15111005 Last Reward Block 15111004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15111007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15111008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15111006 +accuGOVPerShare 4.505942317743 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15111008 Last Reward Block 15111006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15111010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15111009 +accuGOVPerShare 4.505946668513 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15111010 Last Reward Block 15111009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15112001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15112001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15112003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15112002 +accuGOVPerShare 4.507386773534 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15112003 Last Reward Block 15112002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15112005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15112004 +accuGOVPerShare 4.507389674047 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15112005 Last Reward Block 15112004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15112007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15112008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15112006 +accuGOVPerShare 4.50739257456 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15112008 Last Reward Block 15112006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15112010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15112009 +accuGOVPerShare 4.50739692533 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15112010 Last Reward Block 15112009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15113001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15113001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15113003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15113002 +accuGOVPerShare 4.508837030352 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15113003 Last Reward Block 15113002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15113005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15113004 +accuGOVPerShare 4.508839930865 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15113005 Last Reward Block 15113004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15113007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15113008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15113006 +accuGOVPerShare 4.508842831378 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15113008 Last Reward Block 15113006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15113010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15113009 +accuGOVPerShare 4.508847182148 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15113010 Last Reward Block 15113009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15114001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15114001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15114003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15114002 +accuGOVPerShare 4.510287287169 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15114003 Last Reward Block 15114002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15114005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15114004 +accuGOVPerShare 4.510290187682 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15114005 Last Reward Block 15114004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15114007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15114008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15114006 +accuGOVPerShare 4.510293088195 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15114008 Last Reward Block 15114006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15114010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15114009 +accuGOVPerShare 4.510297438965 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15114010 Last Reward Block 15114009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15115001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15115001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15115003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15115002 +accuGOVPerShare 4.511737543986 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15115003 Last Reward Block 15115002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15115005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15115004 +accuGOVPerShare 4.511740444499 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15115005 Last Reward Block 15115004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15115007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15115008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15115006 +accuGOVPerShare 4.511743345012 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15115008 Last Reward Block 15115006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15115010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15115009 +accuGOVPerShare 4.511747695782 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15115010 Last Reward Block 15115009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15116001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15116001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15116003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15116002 +accuGOVPerShare 4.513187800803 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15116003 Last Reward Block 15116002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15116005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15116004 +accuGOVPerShare 4.513190701316 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15116005 Last Reward Block 15116004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15116007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15116008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15116006 +accuGOVPerShare 4.513193601829 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15116008 Last Reward Block 15116006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15116010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15116009 +accuGOVPerShare 4.513197952599 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15116010 Last Reward Block 15116009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15117001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15117001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15117003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15117002 +accuGOVPerShare 4.51463805762 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15117003 Last Reward Block 15117002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15117005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15117004 +accuGOVPerShare 4.514640958133 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15117005 Last Reward Block 15117004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15117007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15117008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15117006 +accuGOVPerShare 4.514643858646 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15117008 Last Reward Block 15117006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15117010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15117009 +accuGOVPerShare 4.514648209416 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15117010 Last Reward Block 15117009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15118001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15118001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15118003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15118002 +accuGOVPerShare 4.516088314437 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15118003 Last Reward Block 15118002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15118005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15118004 +accuGOVPerShare 4.51609121495 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15118005 Last Reward Block 15118004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15118007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15118008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15118006 +accuGOVPerShare 4.516094115463 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15118008 Last Reward Block 15118006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15118010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15118009 +accuGOVPerShare 4.516098466233 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15118010 Last Reward Block 15118009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15119001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15119001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15119003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15119002 +accuGOVPerShare 4.517538571255 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15119003 Last Reward Block 15119002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15119005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15119004 +accuGOVPerShare 4.517541471768 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15119005 Last Reward Block 15119004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15119007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15119008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15119006 +accuGOVPerShare 4.517544372281 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15119008 Last Reward Block 15119006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15119010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15119009 +accuGOVPerShare 4.517548723051 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15119010 Last Reward Block 15119009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15120001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15120001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15120003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15120002 +accuGOVPerShare 4.518988828072 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15120003 Last Reward Block 15120002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15120005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15120004 +accuGOVPerShare 4.518991728585 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15120005 Last Reward Block 15120004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15120007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15120008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15120006 +accuGOVPerShare 4.518994629098 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15120008 Last Reward Block 15120006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15120010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15120009 +accuGOVPerShare 4.518998979868 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15120010 Last Reward Block 15120009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15121001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15121001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15121003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15121002 +accuGOVPerShare 4.520439084889 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15121003 Last Reward Block 15121002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15121005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15121004 +accuGOVPerShare 4.520441985402 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15121005 Last Reward Block 15121004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15121007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15121008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15121006 +accuGOVPerShare 4.520444885915 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15121008 Last Reward Block 15121006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15121010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15121009 +accuGOVPerShare 4.520449236685 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15121010 Last Reward Block 15121009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15122001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15122001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15122003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15122002 +accuGOVPerShare 4.521889341706 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15122003 Last Reward Block 15122002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15122005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15122004 +accuGOVPerShare 4.521892242219 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15122005 Last Reward Block 15122004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15122007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15122008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15122006 +accuGOVPerShare 4.521895142732 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15122008 Last Reward Block 15122006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15122010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15122009 +accuGOVPerShare 4.521899493502 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15122010 Last Reward Block 15122009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15123001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15123001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15123003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15123002 +accuGOVPerShare 4.523339598523 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15123003 Last Reward Block 15123002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15123005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15123004 +accuGOVPerShare 4.523342499036 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15123005 Last Reward Block 15123004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15123007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15123008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15123006 +accuGOVPerShare 4.523345399549 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15123008 Last Reward Block 15123006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15123010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15123009 +accuGOVPerShare 4.523349750319 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15123010 Last Reward Block 15123009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15124001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15124001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15124003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15124002 +accuGOVPerShare 4.52478985534 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15124003 Last Reward Block 15124002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15124005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15124004 +accuGOVPerShare 4.524792755853 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15124005 Last Reward Block 15124004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15124007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15124008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15124006 +accuGOVPerShare 4.524795656366 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15124008 Last Reward Block 15124006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15124010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15124009 +accuGOVPerShare 4.524800007136 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15124010 Last Reward Block 15124009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15125001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15125001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15125003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15125002 +accuGOVPerShare 4.526240112157 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15125003 Last Reward Block 15125002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15125005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15125004 +accuGOVPerShare 4.52624301267 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15125005 Last Reward Block 15125004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15125007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15125008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15125006 +accuGOVPerShare 4.526245913183 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15125008 Last Reward Block 15125006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15125010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15125009 +accuGOVPerShare 4.526250263953 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15125010 Last Reward Block 15125009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15126001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15126001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15126003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15126002 +accuGOVPerShare 4.527690368975 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15126003 Last Reward Block 15126002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15126005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15126004 +accuGOVPerShare 4.527693269488 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15126005 Last Reward Block 15126004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15126007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15126008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15126006 +accuGOVPerShare 4.527696170001 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15126008 Last Reward Block 15126006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15126010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15126009 +accuGOVPerShare 4.527700520771 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15126010 Last Reward Block 15126009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15127001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15127001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15127003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15127002 +accuGOVPerShare 4.529140625792 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15127003 Last Reward Block 15127002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15127005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15127004 +accuGOVPerShare 4.529143526305 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15127005 Last Reward Block 15127004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15127007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15127008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15127006 +accuGOVPerShare 4.529146426818 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15127008 Last Reward Block 15127006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15127010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15127009 +accuGOVPerShare 4.529150777588 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15127010 Last Reward Block 15127009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15128001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15128001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15128003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15128002 +accuGOVPerShare 4.530590882609 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15128003 Last Reward Block 15128002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15128005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15128004 +accuGOVPerShare 4.530593783122 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15128005 Last Reward Block 15128004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15128007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15128008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15128006 +accuGOVPerShare 4.530596683635 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15128008 Last Reward Block 15128006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15128010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15128009 +accuGOVPerShare 4.530601034405 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15128010 Last Reward Block 15128009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15129001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15129001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15129003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15129002 +accuGOVPerShare 4.532041139426 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15129003 Last Reward Block 15129002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15129005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15129004 +accuGOVPerShare 4.532044039939 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15129005 Last Reward Block 15129004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15129007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15129008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15129006 +accuGOVPerShare 4.532046940452 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15129008 Last Reward Block 15129006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15129010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15129009 +accuGOVPerShare 4.532051291222 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15129010 Last Reward Block 15129009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15130001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15130001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15130003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15130002 +accuGOVPerShare 4.533491396243 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15130003 Last Reward Block 15130002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15130005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15130004 +accuGOVPerShare 4.533494296756 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15130005 Last Reward Block 15130004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15130007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15130008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15130006 +accuGOVPerShare 4.533497197269 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15130008 Last Reward Block 15130006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15130010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15130009 +accuGOVPerShare 4.533501548039 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15130010 Last Reward Block 15130009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15131001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15131001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15131003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15131002 +accuGOVPerShare 4.53494165306 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15131003 Last Reward Block 15131002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15131005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15131004 +accuGOVPerShare 4.534944553573 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15131005 Last Reward Block 15131004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15131007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15131008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15131006 +accuGOVPerShare 4.534947454086 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15131008 Last Reward Block 15131006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15131010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15131009 +accuGOVPerShare 4.534951804856 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15131010 Last Reward Block 15131009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15132001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15132001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15132003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15132002 +accuGOVPerShare 4.536391909877 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15132003 Last Reward Block 15132002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15132005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15132004 +accuGOVPerShare 4.53639481039 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15132005 Last Reward Block 15132004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15132007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15132008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15132006 +accuGOVPerShare 4.536397710903 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15132008 Last Reward Block 15132006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15132010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15132009 +accuGOVPerShare 4.536402061673 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15132010 Last Reward Block 15132009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15133001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15133001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15133003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15133002 +accuGOVPerShare 4.537842166695 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15133003 Last Reward Block 15133002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15133005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15133004 +accuGOVPerShare 4.537845067208 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15133005 Last Reward Block 15133004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15133007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15133008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15133006 +accuGOVPerShare 4.537847967721 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15133008 Last Reward Block 15133006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15133010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15133009 +accuGOVPerShare 4.537852318491 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15133010 Last Reward Block 15133009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15134001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15134001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15134003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15134002 +accuGOVPerShare 4.539292423512 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15134003 Last Reward Block 15134002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15134005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15134004 +accuGOVPerShare 4.539295324025 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15134005 Last Reward Block 15134004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15134007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15134008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15134006 +accuGOVPerShare 4.539298224538 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15134008 Last Reward Block 15134006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15134010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15134009 +accuGOVPerShare 4.539302575308 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15134010 Last Reward Block 15134009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15135001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15135001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15135003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15135002 +accuGOVPerShare 4.540742680329 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15135003 Last Reward Block 15135002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15135005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15135004 +accuGOVPerShare 4.540745580842 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15135005 Last Reward Block 15135004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15135007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15135008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15135006 +accuGOVPerShare 4.540748481355 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15135008 Last Reward Block 15135006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15135010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15135009 +accuGOVPerShare 4.540752832125 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15135010 Last Reward Block 15135009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15136001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15136001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15136003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15136002 +accuGOVPerShare 4.542192937146 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15136003 Last Reward Block 15136002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15136005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15136004 +accuGOVPerShare 4.542195837659 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15136005 Last Reward Block 15136004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15136007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15136008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15136006 +accuGOVPerShare 4.542198738172 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15136008 Last Reward Block 15136006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15136010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15136009 +accuGOVPerShare 4.542203088942 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15136010 Last Reward Block 15136009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15137001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15137001 Last Reward Block 15004358 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15137003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137002 +accuGOVPerShare 4.543643193963 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15137003 Last Reward Block 15137002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 275366919377677643061354 275366.919377677643061354 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 826050823422468911870440 826050.82342246891187044 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15137005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137004 +accuGOVPerShare 4.543646094476 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15137005 Last Reward Block 15137004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15137007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15137008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137006 +accuGOVPerShare 4.543648994989 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15137008 Last Reward Block 15137006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15137010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137009 +accuGOVPerShare 4.543653345759 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15137010 Last Reward Block 15137009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15138001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15138001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15138003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15138002 +accuGOVPerShare 4.54509345078 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15138003 Last Reward Block 15138002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15138005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15138004 +accuGOVPerShare 4.545096351293 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15138005 Last Reward Block 15138004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15138007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15138008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15138006 +accuGOVPerShare 4.545099251806 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15138008 Last Reward Block 15138006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15138010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15138009 +accuGOVPerShare 4.545103602576 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15138010 Last Reward Block 15138009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15139001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15139001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15139003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15139002 +accuGOVPerShare 4.546543707597 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15139003 Last Reward Block 15139002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15139005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15139004 +accuGOVPerShare 4.54654660811 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15139005 Last Reward Block 15139004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15139007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15139008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15139006 +accuGOVPerShare 4.546549508623 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15139008 Last Reward Block 15139006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15139010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15139009 +accuGOVPerShare 4.546553859393 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15139010 Last Reward Block 15139009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15140001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15140001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15140003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15140002 +accuGOVPerShare 4.547993964414 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15140003 Last Reward Block 15140002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15140005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15140004 +accuGOVPerShare 4.547996864927 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15140005 Last Reward Block 15140004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15140007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15140008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15140006 +accuGOVPerShare 4.54799976544 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15140008 Last Reward Block 15140006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15140010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15140009 +accuGOVPerShare 4.54800411621 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15140010 Last Reward Block 15140009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15141001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15141001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15141003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15141002 +accuGOVPerShare 4.549444221231 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15141003 Last Reward Block 15141002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15141005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15141004 +accuGOVPerShare 4.549447121744 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15141005 Last Reward Block 15141004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15141007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15141008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15141006 +accuGOVPerShare 4.549450022257 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15141008 Last Reward Block 15141006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15141010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15141009 +accuGOVPerShare 4.549454373027 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15141010 Last Reward Block 15141009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15142001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15142001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15142003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15142002 +accuGOVPerShare 4.550894478048 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15142003 Last Reward Block 15142002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15142005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15142004 +accuGOVPerShare 4.550897378561 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15142005 Last Reward Block 15142004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15142007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15142008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15142006 +accuGOVPerShare 4.550900279074 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15142008 Last Reward Block 15142006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15142010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15142009 +accuGOVPerShare 4.550904629844 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15142010 Last Reward Block 15142009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15143001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15143001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15143003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15143002 +accuGOVPerShare 4.552344734865 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15143003 Last Reward Block 15143002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15143005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15143004 +accuGOVPerShare 4.552347635378 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15143005 Last Reward Block 15143004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15143007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15143008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15143006 +accuGOVPerShare 4.552350535891 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15143008 Last Reward Block 15143006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15143010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15143009 +accuGOVPerShare 4.552354886661 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15143010 Last Reward Block 15143009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15144001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15144001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15144003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15144002 +accuGOVPerShare 4.553794991682 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15144003 Last Reward Block 15144002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15144005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15144004 +accuGOVPerShare 4.553797892195 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15144005 Last Reward Block 15144004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15144007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15144008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15144006 +accuGOVPerShare 4.553800792708 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15144008 Last Reward Block 15144006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15144010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15144009 +accuGOVPerShare 4.553805143478 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15144010 Last Reward Block 15144009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15145001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15145001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15145003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15145002 +accuGOVPerShare 4.5552452485 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15145003 Last Reward Block 15145002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15145005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15145004 +accuGOVPerShare 4.555248149013 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15145005 Last Reward Block 15145004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15145007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15145008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15145006 +accuGOVPerShare 4.555251049526 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15145008 Last Reward Block 15145006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15145010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15145009 +accuGOVPerShare 4.555255400296 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15145010 Last Reward Block 15145009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15146001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15146001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15146003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15146002 +accuGOVPerShare 4.556695505317 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15146003 Last Reward Block 15146002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15146005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15146004 +accuGOVPerShare 4.55669840583 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15146005 Last Reward Block 15146004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15146007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15146008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15146006 +accuGOVPerShare 4.556701306343 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15146008 Last Reward Block 15146006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15146010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15146009 +accuGOVPerShare 4.556705657113 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15146010 Last Reward Block 15146009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15147001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15147001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15147003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15147002 +accuGOVPerShare 4.558145762134 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15147003 Last Reward Block 15147002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15147005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15147004 +accuGOVPerShare 4.558148662647 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15147005 Last Reward Block 15147004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15147007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15147008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15147006 +accuGOVPerShare 4.55815156316 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15147008 Last Reward Block 15147006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15147010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15147009 +accuGOVPerShare 4.55815591393 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15147010 Last Reward Block 15147009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15148001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15148001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15148003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15148002 +accuGOVPerShare 4.559596018951 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15148003 Last Reward Block 15148002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15148005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15148004 +accuGOVPerShare 4.559598919464 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15148005 Last Reward Block 15148004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15148007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15148008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15148006 +accuGOVPerShare 4.559601819977 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15148008 Last Reward Block 15148006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15148010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15148009 +accuGOVPerShare 4.559606170747 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15148010 Last Reward Block 15148009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15149001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15149001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15149003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15149002 +accuGOVPerShare 4.561046275768 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15149003 Last Reward Block 15149002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15149005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15149004 +accuGOVPerShare 4.561049176281 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15149005 Last Reward Block 15149004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15149007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15149008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15149006 +accuGOVPerShare 4.561052076794 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15149008 Last Reward Block 15149006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15149010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15149009 +accuGOVPerShare 4.561056427564 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15149010 Last Reward Block 15149009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15150001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15150001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15150003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15150002 +accuGOVPerShare 4.562496532585 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15150003 Last Reward Block 15150002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15150005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15150004 +accuGOVPerShare 4.562499433098 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15150005 Last Reward Block 15150004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15150007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15150008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15150006 +accuGOVPerShare 4.562502333611 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15150008 Last Reward Block 15150006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15150010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15150009 +accuGOVPerShare 4.562506684381 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15150010 Last Reward Block 15150009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15151001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15151001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15151003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15151002 +accuGOVPerShare 4.563946789402 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15151003 Last Reward Block 15151002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15151005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15151004 +accuGOVPerShare 4.563949689915 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15151005 Last Reward Block 15151004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15151007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15151008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15151006 +accuGOVPerShare 4.563952590428 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15151008 Last Reward Block 15151006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15151010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15151009 +accuGOVPerShare 4.563956941198 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15151010 Last Reward Block 15151009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15152001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15152001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15152003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15152002 +accuGOVPerShare 4.56539704622 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15152003 Last Reward Block 15152002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15152005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15152004 +accuGOVPerShare 4.565399946733 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15152005 Last Reward Block 15152004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15152007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15152008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15152006 +accuGOVPerShare 4.565402847246 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15152008 Last Reward Block 15152006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15152010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15152009 +accuGOVPerShare 4.565407198016 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15152010 Last Reward Block 15152009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15153001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15153001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15153003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15153002 +accuGOVPerShare 4.566847303037 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15153003 Last Reward Block 15153002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15153005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15153004 +accuGOVPerShare 4.56685020355 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15153005 Last Reward Block 15153004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15153007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15153008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15153006 +accuGOVPerShare 4.566853104063 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15153008 Last Reward Block 15153006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15153010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15153009 +accuGOVPerShare 4.566857454833 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15153010 Last Reward Block 15153009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15154001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15154001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15154003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15154002 +accuGOVPerShare 4.568297559854 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15154003 Last Reward Block 15154002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15154005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15154004 +accuGOVPerShare 4.568300460367 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15154005 Last Reward Block 15154004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15154007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15154008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15154006 +accuGOVPerShare 4.56830336088 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15154008 Last Reward Block 15154006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15154010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15154009 +accuGOVPerShare 4.56830771165 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15154010 Last Reward Block 15154009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15155001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15155001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15155003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15155002 +accuGOVPerShare 4.569747816671 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15155003 Last Reward Block 15155002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15155005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15155004 +accuGOVPerShare 4.569750717184 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15155005 Last Reward Block 15155004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15155007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15155008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15155006 +accuGOVPerShare 4.569753617697 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15155008 Last Reward Block 15155006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15155010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15155009 +accuGOVPerShare 4.569757968467 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15155010 Last Reward Block 15155009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15156001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15156001 Last Reward Block 15137997 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15156003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156002 +accuGOVPerShare 4.571198073488 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15156003 Last Reward Block 15156002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15156005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156004 +accuGOVPerShare 4.571200974001 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15156005 Last Reward Block 15156004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15156007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15156008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156006 +accuGOVPerShare 4.571203874514 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15156008 Last Reward Block 15156006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15156010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156009 +accuGOVPerShare 4.571208225284 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15156010 Last Reward Block 15156009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15157001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15157001 Last Reward Block 15156956 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15157003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15157002 +accuGOVPerShare 4.572648330305 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15157003 Last Reward Block 15157002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15157005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15157004 +accuGOVPerShare 4.572651230818 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15157005 Last Reward Block 15157004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15157007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15157008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15157006 +accuGOVPerShare 4.572654131331 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15157008 Last Reward Block 15157006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15157010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15157009 +accuGOVPerShare 4.572658482101 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15157010 Last Reward Block 15157009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15158001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15158001 Last Reward Block 15156956 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15158003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15158002 +accuGOVPerShare 4.574098587122 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15158003 Last Reward Block 15158002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15158005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15158004 +accuGOVPerShare 4.574101487635 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15158005 Last Reward Block 15158004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15158007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15158008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15158006 +accuGOVPerShare 4.574104388148 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15158008 Last Reward Block 15158006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15158010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15158009 +accuGOVPerShare 4.574108738918 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15158010 Last Reward Block 15158009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15159001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15159001 Last Reward Block 15156956 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15159003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15159002 +accuGOVPerShare 4.575548843939 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15159003 Last Reward Block 15159002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15159005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15159004 +accuGOVPerShare 4.575551744452 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15159005 Last Reward Block 15159004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15159007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15159008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15159006 +accuGOVPerShare 4.575554644965 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15159008 Last Reward Block 15159006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15159010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15159009 +accuGOVPerShare 4.575558995735 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15159010 Last Reward Block 15159009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15160001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15160001 Last Reward Block 15156956 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15160003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15160002 +accuGOVPerShare 4.576999100757 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15160003 Last Reward Block 15160002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15160005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15160004 +accuGOVPerShare 4.57700200127 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15160005 Last Reward Block 15160004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15160007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15160008 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15160006 +accuGOVPerShare 4.577004901783 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15160008 Last Reward Block 15160006 Bond expiration block 22647574 +Current number of shares deposited in MasterChefV21 for this bond: 9351040526163838324896 +Number of shares that should have been deposited: 37402466398057038362881 +Number of shares to compensate: 28051425871893200037985 +Current LP reward debt 14452290053249093455212 14452.290053249093455212 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 43354249398610005132652 43354.249398610005132652 +Updated bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15160010 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15160009 +accuGOVPerShare 4.577009252553 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15160010 Last Reward Block 15160009 Bond expiration block 22676978 +Current number of shares deposited in MasterChefV21 for this bond: 8991650309086743220575 +Number of shares that should have been deposited: 35964970701144371859332 +Number of shares to compensate: 26973320392057628638757 +Current LP reward debt 31244105689425156446200 31244.1056894251564462 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 93726651299206479691723 93726.651299206479691723 +Updated bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15161001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15161001 Last Reward Block 15156956 Bond expiration block 21124941 +Current number of shares deposited in MasterChefV21 for this bond: 1301000000000000000 +Number of shares that should have been deposited: 4338709911985672143 +Number of shares to compensate: 3037709911985672143 +Current LP reward debt 0 0.0 +Correct multiplier 3334903852410201493 3.334903852410201493 +LP reward to compensate 0 0.0 +Updated bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15161003 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15161002 +accuGOVPerShare 4.578449357574 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15161003 Last Reward Block 15161002 Bond expiration block 22618922 +Current number of shares deposited in MasterChefV21 for this bond: 74603879373206500005186 +Number of shares that should have been deposited: 298401988913823580096197 +Number of shares to compensate: 223798109540617080091011 +Current LP reward debt 339081062568025157719774 339081.062568025157719774 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 1017181699146352782700715 1017181.699146352782700715 +Updated bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15161005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15161004 +accuGOVPerShare 4.578452258087 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 +== Block 15161005 Last Reward Block 15161004 Bond expiration block 22624203 +Current number of shares deposited in MasterChefV21 for this bond: 44739174270101943975392 +Number of shares that should have been deposited: 178948584131608045237605 +Number of shares to compensate: 134209409861506101262213 +Current LP reward debt 194671893865565164830100 194671.8938655651648301 +Correct multiplier 3999818661186039091 3.999818661186039091 +LP reward to compensate 583980380026350388946873 583980.380026350388946873 +Updated bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15161007 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15000003 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15000004 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15000005 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 184526404702160871086491 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15000006 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15000007 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15000008 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15000001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15000002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15000003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 184526404702160871086491 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15000004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15000005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15000006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15001001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15001002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15001003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 184526404702160871086491 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15001004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15001005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15001006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15002001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15002002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15002003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 184526404702160871086491 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15002004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15002005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15002006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15003001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15003002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15003003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 184526404702160871086491 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15003004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15003005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15003006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15004001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15004002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15004003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 184526404702160871086491 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15004004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15004005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15004006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1138210376520191830 1.13821037652019183 +lastRewardBlock 14862299 +accuGOVPerShare 4.124496365403 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15005001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15005002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15005003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15005004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15005005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15005006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15006001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15006002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15006003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15006004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15006005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15006006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15007001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15007002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15007003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15007004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15007005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15007006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15008001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15008002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15008003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15008004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15008005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15008006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15009001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15009002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15009003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15009004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15009005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15009006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15010001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15010002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15010003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15010004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15010005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15010006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15011001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15011002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15011003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15011004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15011005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15011006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15012001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15012002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15012003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15012004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15012005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15012006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15013001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15013002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15013003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15013004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15013005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15013006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15014001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15014002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15014003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15014004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15014005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15014006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15015001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15015002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15015003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15015004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15015005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15015006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15016001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15016002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15016003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15016004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15016005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15016006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15017001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15017002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15017003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15017004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15017005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15017006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15018001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15018002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15018003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15018004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15018005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15018006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15019001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15019002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15019003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15019004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15019005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15019006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15020001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15020002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15020003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15020004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15020005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15020006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15021001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15021002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15021003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15021004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15021005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15021006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15022001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15022002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15022003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15022004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15022005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15022006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15023001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15023002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15023003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15023004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15023005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15023006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15024001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15024002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15024003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15024004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15024005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15024006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15025001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15025002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15025003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15025004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15025005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15025006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15026001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15026002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15026003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15026004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15026005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15026006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15027001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15027002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15027003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15027004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15027005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15027006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15028001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15028002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15028003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15028004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15028005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15028006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15029001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15029002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15029003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15029004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15029005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15029006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15030001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15030002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15030003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15030004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15030005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15030006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15031001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15031002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15031003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15031004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15031005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15031006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15032001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15032002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15032003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15032004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15032005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15032006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15033001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15033002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15033003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15033004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15033005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15033006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15034001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15034002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15034003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15034004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15034005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15034006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15035001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15035002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15035003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15035004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15035005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15035006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15036001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15036002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15036003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15036004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15036005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15036006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15037001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15037002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15037003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15037004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15037005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15037006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15038001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15038002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15038003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15038004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15038005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15038006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15039001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15039002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15039003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15039004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15039005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15039006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15040001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15040002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15040003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15040004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15040005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15040006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15041001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15041002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15041003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15041004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15041005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15041006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15042001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15042002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15042003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15042004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15042005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15042006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15043001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15043002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15043003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15043004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15043005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15043006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15044001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15044002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15044003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15044004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15044005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15044006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15045001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15045002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15045003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15045004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15045005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15045006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15046001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15046002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15046003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15046004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15046005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15046006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15047001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15047002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15047003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15047004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15047005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15047006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15048001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15048002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15048003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15048004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15048005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15048006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15049001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15049002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15049003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15049004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15049005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15049006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15050001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15050002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15050003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15050004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15050005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15050006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15051001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15051002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15051003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15051004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15051005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15051006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15052001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15052002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15052003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15052004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15052005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15052006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15053001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15053002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15053003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15053004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15053005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15053006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15054001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15054002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15054003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15054004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15054005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15054006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15055001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15055002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15055003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15055004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15055005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15055006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15056001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15056002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15056003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15056004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15056005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15056006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15057001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15057002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15057003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15057004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15057005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15057006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15058001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15058002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15058003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15058004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15058005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15058006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15059001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15059002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15059003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15059004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15059005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15059006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15060001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15060002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15060003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15060004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15060005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15060006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15061001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15061002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15061003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15061004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15061005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15061006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15062001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15062002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15062003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15062004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15062005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15062006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15063001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15063002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15063003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15063004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15063005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15063006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15064001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15064002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15064003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15064004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15064005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15064006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15065001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15065002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15065003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15065004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15065005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15065006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15066001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15066002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15066003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15066004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15066005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15066006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15067001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15067002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15067003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15067004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15067005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15067006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15068001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15068002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15068003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15068004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15068005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15068006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15069001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15069002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15069003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15069004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15069005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15069006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15070001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15070002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15070003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15070004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15070005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15070006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15071001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15071002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15071003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15071004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15071005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15071006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15072001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15072002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15072003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15072004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15072005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15072006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15073001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15073002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15073003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15073004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15073005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15073006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15074001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15074002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15074003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15074004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15074005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15074006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15075001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15075002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15075003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15075004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15075005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15075006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15076001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15076002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15076003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15076004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15076005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15076006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15077001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15077002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15077003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15077004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15077005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15077006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15078001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15078002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15078003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15078004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15078005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15078006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15079001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15079002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15079003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15079004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15079005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15079006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15080001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15080002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15080003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15080004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15080005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15080006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15081001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15081002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15081003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15081004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15081005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15081006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15082001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15082002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15082003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15082004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15082005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15082006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15083001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15083002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15083003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15083004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15083005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15083006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15084001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15084002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15084003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15084004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15084005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15084006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15085001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15085002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15085003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15085004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15085005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15085006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15086001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15086002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15086003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15086004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15086005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15086006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15087001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15087002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15087003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15087004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15087005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15087006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15088001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15088002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15088003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15088004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15088005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15088006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15089001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15089002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15089003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15089004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15089005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15089006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15090001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15090002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15090003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15090004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15090005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15090006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15091001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15091002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15091003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15091004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15091005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15091006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15092001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15092002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15092003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15092004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15092005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15092006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15093001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15093002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15093003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15093004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15093005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15093006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15094001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15094002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15094003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15094004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15094005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15094006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15095001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15095002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15095003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15095004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15095005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15095006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15096001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15096002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15096003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15096004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15096005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15096006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15097001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15097002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15097003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15097004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15097005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15097006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15098001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15098002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15098003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15098004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15098005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15098006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15099001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15099002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15099003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15099004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15099005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15099006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15100001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15100002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15100003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15100004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15100005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15100006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15101001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15101002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15101003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15101004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15101005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15101006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15102001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15102002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15102003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15102004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15102005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15102006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15103001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15103002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15103003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15103004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15103005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15103006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15104001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15104002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15104003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15104004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15104005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15104006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15105001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15105002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15105003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15105004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15105005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15105006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15106001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15106002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15106003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15106004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15106005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15106006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15107001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15107002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15107003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15107004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15107005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15107006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15108001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15108002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15108003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15108004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15108005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15108006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15109001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15109002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15109003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15109004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15109005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15109006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15110001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15110002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15110003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15110004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15110005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15110006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15111001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15111002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15111003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15111004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15111005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15111006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15112001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15112002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15112003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15112004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15112005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15112006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15113001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15113002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15113003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15113004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15113005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15113006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15114001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15114002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15114003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15114004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15114005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15114006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15115001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15115002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15115003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15115004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15115005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15115006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15116001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15116002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15116003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15116004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15116005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15116006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15117001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15117002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15117003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15117004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15117005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15117006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15118001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15118002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15118003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15118004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15118005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15118006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15119001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15119002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15119003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15119004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15119005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15119006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15120001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15120002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15120003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15120004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15120005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15120006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15121001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15121002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15121003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15121004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15121005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15121006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15122001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15122002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15122003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15122004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15122005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15122006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15123001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15123002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15123003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15123004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15123005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15123006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15124001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15124002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15124003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15124004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15124005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15124006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15125001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15125002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15125003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15125004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15125005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15125006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15126001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15126002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15126003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15126004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15126005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15126006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15127001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15127002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15127003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15127004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15127005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15127006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15128001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15128002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15128003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15128004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15128005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15128006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15129001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15129002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15129003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15129004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15129005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15129006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15130001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15130002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15130003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15130004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15130005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15130006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15131001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15131002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15131003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15131004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15131005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15131006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15132001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15132002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15132003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15132004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15132005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15132006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15133001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15133002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15133003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15133004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15133005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15133006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15134001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15134002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15134003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15134004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15134005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15134006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15135001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15135002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15135003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15135004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15135005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15135006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15136001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15136002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15136003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15136004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15136005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15136006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15137001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15137002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 275366919377677643061354 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15137003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15137004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15137005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15137006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 1035783219709310954 1.035783219709310954 +lastRewardBlock 15004358 +accuGOVPerShare 4.35127532871 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15138001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15138002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15138003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15138004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15138005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15138006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15139001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15139002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15139003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15139004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15139005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15139006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15140001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15140002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15140003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15140004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15140005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15140006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15141001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15141002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15141003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15141004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15141005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15141006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15142001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15142002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15142003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15142004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15142005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15142006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15143001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15143002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15143003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15143004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15143005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15143006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15144001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15144002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15144003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15144004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15144005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15144006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15145001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15145002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15145003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15145004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15145005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15145006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15146001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15146002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15146003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15146004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15146005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15146006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15147001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15147002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15147003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15147004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15147005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15147006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15148001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15148002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15148003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15148004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15148005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15148006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15149001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15149002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15149003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15149004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15149005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15149006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15150001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15150002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15150003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15150004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15150005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15150006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15151001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15151002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15151003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15151004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15151005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15151006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15152001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15152002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15152003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15152004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15152005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15152006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15153001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15153002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15153003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15153004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15153005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15153006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15154001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15154002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15154003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15154004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15154005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15154006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15155001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15155002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15155003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15155004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15155005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15155006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15156001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15156002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15156003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15156004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15156005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15156006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15137997 +accuGOVPerShare 4.545086199496 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15157001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15157002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15157003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15157004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15157005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15157006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15158001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15158002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15158003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15158004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15158005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15158006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15159001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15159002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15159003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15159004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15159005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15159006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15160001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15160002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15160003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15160004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15160005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15160006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15161001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15161002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15161003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15161004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15161005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15161006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15162001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15162002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15162003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15162004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15162005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15162006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15156956 +accuGOVPerShare 4.572581618492 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15163001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15163002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15163003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15163004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15163005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15163006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15164001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15164002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15164003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15164004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15164005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15164006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15165001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15165002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15165003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15165004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15165005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15165006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15166001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15166002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15166003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15166004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15166005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15166006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15167001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15167002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15167003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15167004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15167005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15167006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15168001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15168002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15168003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15168004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15168005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15168006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15169001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15169002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15169003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15169004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15169005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15169006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15170001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15170002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15170003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15170004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15170005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15170006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15171001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15171002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15171003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15171004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15171005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15171006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15172001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15172002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15172003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15172004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15172005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15172006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15173001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15173002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15173003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15173004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15173005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15173006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15174001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15174002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15174003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15174004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15174005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15174006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15175001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15175002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15175003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15175004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15175005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15175006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15176001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15176002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15176003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15176004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15176005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15176006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15177001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15177002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15177003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15177004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15177005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15177006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15178001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15178002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15178003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15178004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15178005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15178006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15179001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15179002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15179003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15179004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15179005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15179006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15180001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15180002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15180003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15180004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15180005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15180006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15181001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15181002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15181003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15181004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15181005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15181006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15182001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15182002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15182003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15182004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15182005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15182006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15183001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15183002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15183003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15183004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15183005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15183006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15184001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15184002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15184003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15184004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15184005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15184006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15185001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15185002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15185003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15185004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15185005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15185006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15186001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15186002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15186003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15186004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15186005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15186006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15187001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15187002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15187003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15187004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15187005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15187006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15188001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15188002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15188003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15188004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15188005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15188006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15189001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15189002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15189003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15189004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15189005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15189006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15190001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15190002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15190003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15190004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15190005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15190006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15191001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15191002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15191003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15191004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15191005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15191006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15192001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15192002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15192003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15192004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15192005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15192006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15193001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15193002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15193003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15193004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15193005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15193006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15194001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15194002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15194003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15194004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15194005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15194006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15195001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15195002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15195003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15195004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15195005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15195006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15196001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15196002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15196003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15196004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15196005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15196006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15197001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15197002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15197003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15197004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15197005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15197006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15198001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15198002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15198003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15198004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15198005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15198006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15199001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15199002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15199003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15199004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15199005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15199006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15200001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15200002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15200003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15200004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15200005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15200006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15201001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15201002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15201003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15201004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15201005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15201006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15202001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15202002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15202003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15202004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15202005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15202006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15203001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15203002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15203003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15203004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15203005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15203006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15204001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15204002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15204003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15204004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15204005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15204006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15205001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15205002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15205003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15205004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15205005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15205006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15206001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15206002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15206003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15206004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15206005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15206006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15207001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15207002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15207003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15207004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15207005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15207006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15208001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15208002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15208003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15208004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15208005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15208006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15209001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15209002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15209003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15209004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15209005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15209006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15210001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15210002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15210003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15210004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15210005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15210006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15211001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15211002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15211003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15211004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15211005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15211006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15212001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15212002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15212003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15212004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15212005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15212006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15213001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15213002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15213003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15213004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15213005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15213006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 940978659364582872 0.940978659364582872 +lastRewardBlock 15162376 +accuGOVPerShare 4.58044201044 +Total number of bonds created 45 +total LP staked 295969.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15214001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15214002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15214003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15214004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15214005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15214006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15215001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15215002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15215003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15215004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15215005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15215006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15216001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15216002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15216003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15216004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15216005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15216006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15217001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15217002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15217003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15217004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15217005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15217006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15218001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15218002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15218003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15218004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15218005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15218006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15219001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15219002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15219003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15219004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15219005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15219006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15220001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15220002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15220003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15220004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15220005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15220006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15221001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15221002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15221003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15221004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15221005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15221006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15222001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15222002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 339081062568025157719774 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15222003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15222004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15222005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15222006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 968854496620085166 0.968854496620085166 +lastRewardBlock 15213831 +accuGOVPerShare 4.657275628304 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15223001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15223002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 348468613894449490587013 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15223003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15223004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15223005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15223006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15224001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15224002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 348468613894449490587013 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15224003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15224004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15224005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15224006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15225001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15225002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 348468613894449490587013 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15225003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15225004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15225005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15225006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15226001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15226002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 348468613894449490587013 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15226003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15226004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15226005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15226006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15227001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15227002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 348468613894449490587013 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15227003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15227004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15227005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15227006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15228001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15228002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 348468613894449490587013 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15228003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15228004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15228005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15228006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15229001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15229002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 348468613894449490587013 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15229003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15229004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15229005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15229006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15230001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15230002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 348468613894449490587013 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15230003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15230004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15230005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15230006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15231001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15231002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 348468613894449490587013 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15231003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15231004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15231005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15231006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 +BOND:1 +BLOCK:15232001 +Bond details 0x89eae71B865A2A39cBa62060aB1b40bbFFaE5b0D,1301000000000000000,12932141,0,21124941,1301000000000000000 +uAD3CRV-f staked 1.301 +BondingShare info 1301000000000000000 0 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d is the bond holder of bond 2 +BOND:2 +BLOCK:15232002 +Bond details 0x4007CE2083c7F3E18097aeB3A39bb8eC149a341d,74603879373206500005186,12936522,0,22618922,74603879373206500005186 +uAD3CRV-f staked 74603.879373206500005186 +BondingShare info 74603879373206500005186 348468613894449490587013 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x7c76f4db70b7e2177de10de3e2f668dadcd11108 is the bond holder of bond 3 +BOND:3 +BLOCK:15232003 +Bond details 0x7c76f4DB70b7E2177de10DE3e2f668daDcd11108,44739174270101943975392,12941803,0,22624203,44739174270101943975392 +uAD3CRV-f staked 44739.174270101943975392 +BondingShare info 44739174270101943975392 194671893865565164830100 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x0000ce08fa224696a819877070bf378e8b131acf is the bond holder of bond 4 +BOND:4 +BLOCK:15232004 +Bond details 0x0000CE08fa224696A819877070BF378e8B131ACF,1480607760433248019987,12951214,0,13044314,0 +uAD3CRV-f staked 1480.607760433248019987 +BondingShare info 1 0 +** ERROR stake already removed: Expected "1480607760433248019987" to be equal 1 + +>> Address 0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6 is the bond holder of bond 5 +BOND:5 +BLOCK:15232005 +Bond details 0xa53A6fE2d8Ad977aD926C485343Ba39f32D3A3F6,9351040526163838324896,12965174,0,22647574,9351040526163838324896 +uAD3CRV-f staked 9351.040526163838324896 +BondingShare info 9351040526163838324896 14452290053249093455212 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2 is the bond holder of bond 6 +BOND:6 +BLOCK:15232006 +Bond details 0xCEFD0E73cC48B0b9d4C8683E52B7d7396600AbB2,8991650309086743220575,12994578,0,22676978,8991650309086743220575 +uAD3CRV-f staked 8991.650309086743220575 +BondingShare info 8991650309086743220575 31244105689425156446200 +uGOVmultiplier 978764879109464086 0.978764879109464086 +lastRewardBlock 15222818 +accuGOVPerShare 4.670918145573 +Total number of bonds created 45 +total LP staked 292469.270754644467391756 + +>> Address 0x89eae71b865a2a39cba62060ab1b40bbffae5b0d is the bond holder of bond 1 diff --git a/tasks/compensateFromLastGetReward.ts b/tasks/compensateFromLastGetReward.ts new file mode 100644 index 0000000..33ae24a --- /dev/null +++ b/tasks/compensateFromLastGetReward.ts @@ -0,0 +1,465 @@ +/* eslint-disable @typescript-eslint/no-loop-func */ +/* eslint-disable @typescript-eslint/restrict-template-expressions */ +/* eslint-disable @typescript-eslint/no-unsafe-call */ +/* eslint-disable @typescript-eslint/no-unsafe-member-access */ +/* eslint-disable @typescript-eslint/no-unsafe-assignment */ + +import { task } from "hardhat/config"; +import "@nomiclabs/hardhat-waffle"; +import { expect } from "chai"; +import { BigNumber, Signer } from "ethers"; + +import { BondingShareV2 } from "../artifacts/types/BondingShareV2"; +import { MasterChefV2 } from "../artifacts/types/MasterChefV2"; +import { BondingV2 } from "../artifacts/types/BondingV2"; +import { UbiquityFormulas } from "../artifacts/types/UbiquityFormulas"; +import { UbiquityAlgorithmicDollarManager } from "../artifacts/types/UbiquityAlgorithmicDollarManager"; +import { ERC20Ubiquity } from "../artifacts/types/ERC20Ubiquity"; + +let lastBlock = 19390055; + +// First six bond holders +const bondHolders = [ + "0x89eae71b865a2a39cba62060ab1b40bbffae5b0d", + "0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d", + "0x7c76f4db70b7e2177de10de3e2f668dadcd11108", + "0x0000ce08fa224696a819877070bf378e8b131acf", + "0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6", + "0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2", +]; + +// Bond ids to be fixed +const ids = [1, 2, 3, 4, 5, 6]; + +// uAD3CRV-f amounts locked, in wei +const lpTokenLockedAmounts = [ + "1301000000000000000", + "74603879373206500005186", + "44739174270101943975392", + "1480607760433248019987", + "9351040526163838324896", + "8991650309086743220575", +]; + +// locked weeks +const lpTokenLockedweeks = [176, 208, 208, 2, 208, 208]; + +// shares to compensate (expected values, to be compared with on-chain data) +const sharesToCompensate = [ + "3037709911985672143", + "223798109540617080091011", + "134209409861506101262213", + "4187791150719107540", + "28051425871893200037985", + "26973320392057628638757", +]; + +task( + "compensateFromLastGetRewards", + "compensate incorrect staking bond from last GetRewards" +) + .addParam("address", "The bond holder address") + .addParam("bond", "The bond id") + .setAction( + async ( + taskArgs: { address: string; bond: number }, + { ethers, network } + ) => { + const { address: paramAddress, bond: paramId } = taskArgs; + + if (bondHolders[paramId - 1] !== paramAddress) { + console.error("bond holder address mismatch!!!"); + return; + } + + const UBQ_MINTER_ROLE = ethers.utils.keccak256( + ethers.utils.toUtf8Bytes("UBQ_MINTER_ROLE") + ); + + const UbiquityAlgorithmicDollarManagerAddress = + "0x4DA97a8b831C345dBe6d16FF7432DF2b7b776d98"; + let manager: UbiquityAlgorithmicDollarManager; + + const adminAddress = "0xefC0e701A824943b469a694aC564Aa1efF7Ab7dd"; + let admin: Signer; + + const BondingShareV2Address = + "0x2dA07859613C14F6f05c97eFE37B9B4F212b5eF5"; + let bondingShareV2: BondingShareV2; + let masterChefV2: MasterChefV2; + + const BondingV2Address = "0xC251eCD9f1bD5230823F9A0F99a44A87Ddd4CA38"; + let bondingV2: BondingV2; + + const UbiquityFormulasAddress = + "0x54F528979A50FA8Fe99E0118EbbEE5fC8Ea802F7"; + let ubiquityFormulas: UbiquityFormulas; + + const mineBlock = async (timestamp: number): Promise => { + await network.provider.request({ + method: "evm_mine", + params: [timestamp], + }); + }; + + const mineNBlock = async ( + blockCount: number, + secondsBetweenBlock?: number + ): Promise => { + const blockBefore = await ethers.provider.getBlock("latest"); + const maxMinedBlockPerBatch = 500000; + let blockToMine = blockCount; + let blockTime = blockBefore.timestamp; + while (blockToMine > maxMinedBlockPerBatch) { + // eslint-disable-next-line @typescript-eslint/no-loop-func + const minings = [...Array(maxMinedBlockPerBatch).keys()].map( + (_v, i) => { + const newTs = blockTime + i + (secondsBetweenBlock || 1); + return mineBlock(newTs); + } + ); + // eslint-disable-next-line no-await-in-loop + await Promise.all(minings); + blockToMine -= maxMinedBlockPerBatch; + blockTime = + blockTime + + maxMinedBlockPerBatch - + 1 + + maxMinedBlockPerBatch * (secondsBetweenBlock || 1); + } + const minings = [...Array(blockToMine).keys()].map((_v, i) => { + const newTs = blockTime + i + (secondsBetweenBlock || 1); + return mineBlock(newTs); + }); + // eslint-disable-next-line no-await-in-loop + await Promise.all(minings); + }; + + const resetFork = async (blockNumber: number): Promise => { + await network.provider.request({ + method: "hardhat_reset", + params: [ + { + forking: { + jsonRpcUrl: `https://eth-mainnet.alchemyapi.io/v2/${ + process.env.ALCHEMY_API_KEY || "" + }`, + blockNumber, + }, + }, + ], + }); + }; + + const newMasterChefV2 = async (): Promise => { + const newChefV2: MasterChefV2 = (await ethers.getContractAt( + "MasterChefV2", + "0xdae807071b5AC7B6a2a343beaD19929426dBC998" + )) as MasterChefV2; + + await manager.connect(admin).setMasterChefAddress(newChefV2.address); + await manager.connect(admin).grantRole(UBQ_MINTER_ROLE, adminAddress); + + return newChefV2; + }; + + const init = async (block: number): Promise => { + await resetFork(block); + await network.provider.request({ + method: "hardhat_impersonateAccount", + params: [adminAddress], + }); + + // set up admin, manager, bondingShare and masterChef + admin = ethers.provider.getSigner(adminAddress); + + manager = (await ethers.getContractAt( + "UbiquityAlgorithmicDollarManager", + UbiquityAlgorithmicDollarManagerAddress + )) as UbiquityAlgorithmicDollarManager; + + ubiquityFormulas = (await ethers.getContractAt( + "UbiquityFormulas", + UbiquityFormulasAddress + )) as UbiquityFormulas; + + bondingShareV2 = (await ethers.getContractAt( + "BondingShareV2", + BondingShareV2Address + )) as BondingShareV2; + + masterChefV2 = await newMasterChefV2(); + + bondingV2 = (await ethers.getContractAt( + "BondingV2", + BondingV2Address + )) as BondingV2; + }; + + const query = async ( + bondId: number, + log = false + ): Promise< + [ + BigNumber, + BigNumber, + BigNumber, + BigNumber, + BigNumber, + BigNumber, + BigNumber, + BigNumber, + BigNumber, + number, + number + ] + > => { + const block = await ethers.provider.getBlockNumber(); + const uGOVmultiplier = await masterChefV2.uGOVmultiplier(); + const totalShares = await masterChefV2.totalShares(); + const [lastRewardBlock, accuGOVPerShare] = await masterChefV2.pool(); + const totalSupply = await bondingShareV2.totalSupply(); + const totalLP = await bondingShareV2.totalLP(); + + const pendingUGOV = await masterChefV2.pendingUGOV(bondId); + const [amount, rewardDebt] = await masterChefV2.getBondingShareInfo( + bondId + ); + const bond = await bondingShareV2.getBond(bondId); + const bondExpirationBlock = bond[4]; + + if (log) { + if (bondId) { + console.log(`BOND:${bondId}`); + console.log(`BLOCK:${block}`); + console.log("Bond details", bond.toString()); + console.log("uAD3CRV-f staked", ethers.utils.formatEther(bond[1])); + console.log( + "BondingShare info", + amount.toString(), + rewardDebt.toString() + ); + + // verify that bond contains the same amount of LP tokens staked as shares reported by BondingShareInfo + expect(bond[1], "stake already removed").to.be.equal(amount); + // check expected staked value + expect(bond[1]).to.be.equal(lpTokenLockedAmounts[bondId - 1]); + } + console.log( + "uGOVmultiplier", + uGOVmultiplier.toString(), + ethers.utils.formatEther(uGOVmultiplier) + ); + console.log("lastRewardBlock", lastRewardBlock.toString()); + console.log( + "accuGOVPerShare", + ethers.utils.formatUnits(accuGOVPerShare.toString(), 12) + ); + console.log("Total number of bonds created", totalSupply.toString()); + console.log( + "total LP staked", + ethers.utils.formatEther(totalLP.toString()) + ); + } + return [ + totalShares, + accuGOVPerShare, + pendingUGOV, + amount, + rewardDebt, + totalSupply, + totalLP, + uGOVmultiplier, + lastRewardBlock, + block, + bondExpirationBlock.toNumber(), + ]; + }; + + const applyMultiplier = async (_address: string, bondId: number) => { + console.log( + `\n>> Address ${_address} is the bond holder of bond ${bondId}` + ); + + const whaleAdress = "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"; + await network.provider.request({ + method: "hardhat_impersonateAccount", + params: [_address], + }); + await network.provider.request({ + method: "hardhat_impersonateAccount", + params: [whaleAdress], + }); + + const whale = ethers.provider.getSigner(whaleAdress); + + const bondHolder = ethers.provider.getSigner(_address); + + await whale.sendTransaction({ + to: _address, + value: BigNumber.from(10).pow(18).mul(10), + }); + + try { + const res = await query(bondId, true); + + // if (true) return; + const pendingUGOV = res[2]; + const currentNumberOfShares = res[3]; + const currentLpRewardDebt = res[4]; + const lastRewardBlock = res[8].toString(); + const block = res[9]; + const bondExpirationBlock = res[10]; + + console.log( + `== Block ${block} Last Reward Block ${lastRewardBlock} Bond expiration block ${bondExpirationBlock}` + ); + // updating bond + + const correctNumberOfShares: BigNumber = + await ubiquityFormulas.durationMultiply( + BigNumber.from(lpTokenLockedAmounts[bondId - 1]), + BigNumber.from(lpTokenLockedweeks[bondId - 1]), + BigNumber.from("1000000000000000") + ); + + const numberOfSharesToCompensate = correctNumberOfShares.sub( + currentNumberOfShares + ); + + console.log( + "Current number of shares deposited in MasterChefV21 for this bond:", + currentNumberOfShares.toString() + ); + console.log( + "Number of shares that should have been deposited:", + correctNumberOfShares.toString() + ); + console.log( + "Number of shares to compensate:", + numberOfSharesToCompensate.toString() + ); + + console.log( + "Current LP reward debt", + currentLpRewardDebt.toString(), + ethers.utils.formatEther(currentLpRewardDebt) + ); + + // compensate the lpReward based on numberOfSharesToCompensate + const correctMultiplier: BigNumber = + await ubiquityFormulas.durationMultiply( + BigNumber.from("1000000000000000000"), + BigNumber.from(lpTokenLockedweeks[bondId - 1]), + BigNumber.from("1000000000000000") + ); + + console.log( + "Correct multiplier", + correctMultiplier.toString(), + ethers.utils.formatEther(correctMultiplier) + ); + + const multiplierCompensate = correctMultiplier.sub( + BigNumber.from("1000000000000000000") + ); + + const sumCompensation = pendingUGOV + .mul(multiplierCompensate) + .div(BigNumber.from("1000000000000000000")); + + const treasuryTwentyPercent = sumCompensation + .mul(BigNumber.from("200000000000000000")) + .div(BigNumber.from("1000000000000000000")); + + console.log( + "Pending UGOV", + pendingUGOV.toString(), + ethers.utils.formatEther(pendingUGOV) + ); + console.log( + "Pending UGOV (UBQ reward from last getRewards)", + pendingUGOV.toString(), + ethers.utils.formatEther(pendingUGOV) + ); + console.log( + "Multiplier used to compensate", + multiplierCompensate.toString(), + ethers.utils.formatEther(multiplierCompensate) + ); + console.log( + "Additional pending UBQ bond holder compensation", + sumCompensation.toString(), + ethers.utils.formatEther(sumCompensation) + ); + console.log( + "Treasury compensation", + treasuryTwentyPercent.toString(), + ethers.utils.formatEther(treasuryTwentyPercent) + ); + + const treasuryAddress = await manager.treasuryAddress(); + + const ubqToken = (await ethers.getContractAt( + "ERC20Ubiquity", + await manager.governanceTokenAddress(), + admin + )) as ERC20Ubiquity; + + const bondHolderBalanceUBQ = await ubqToken.balanceOf(_address); + const treasuryBalanceUBQ = await ubqToken.balanceOf(treasuryAddress); + + console.log( + "Bond holder UBQ balance BEFORE update", + ethers.utils.formatEther(bondHolderBalanceUBQ) + ); + console.log( + "Treasury UBQ balance BEFORE update", + ethers.utils.formatEther(treasuryBalanceUBQ) + ); + + console.log("! === Sending UBQ to Bond Holder and Treasury === !"); + const txBondHolder = await ubqToken + .connect(admin) + .mint(_address, sumCompensation); + + console.log("Bond holder tx", txBondHolder.hash); + + const txTreasury = await ubqToken + .connect(admin) + .mint(treasuryAddress, treasuryTwentyPercent); + + console.log("Treasury tx", txTreasury.hash); + + const bondHolderBalanceUBQCompensated = await ubqToken.balanceOf( + _address + ); + const treasuryBalanceUBQCompensated = await ubqToken.balanceOf( + treasuryAddress + ); + + console.log( + "Bond holder UBQ balance", + ethers.utils.formatEther(bondHolderBalanceUBQCompensated) + ); + console.log( + "Treasury UBQ balance", + ethers.utils.formatEther(treasuryBalanceUBQCompensated) + ); + console.log("Done!"); + } catch (e) { + console.log(`** ERROR ${(e as Error).message}`); + } + }; + + lastBlock = 13011873; + await init(lastBlock); + + if (paramAddress && paramId) { + // eslint-disable-next-line no-await-in-loop + await applyMultiplier(paramAddress, paramId); + } else { + console.log("Missing input parameters"); + } + } + ); diff --git a/tasks/compensateLumpSum.ts b/tasks/compensateLumpSum.ts new file mode 100644 index 0000000..712ed40 --- /dev/null +++ b/tasks/compensateLumpSum.ts @@ -0,0 +1,463 @@ +/* eslint-disable @typescript-eslint/no-loop-func */ +/* eslint-disable @typescript-eslint/restrict-template-expressions */ +/* eslint-disable @typescript-eslint/no-unsafe-call */ +/* eslint-disable @typescript-eslint/no-unsafe-member-access */ +/* eslint-disable @typescript-eslint/no-unsafe-assignment */ + +import { task } from "hardhat/config"; +import "@nomiclabs/hardhat-waffle"; +import { expect } from "chai"; +import { BigNumber, Signer } from "ethers"; + +import { BondingShareV2 } from "../artifacts/types/BondingShareV2"; +import { MasterChefV2 } from "../artifacts/types/MasterChefV2"; +import { BondingV2 } from "../artifacts/types/BondingV2"; +import { UbiquityFormulas } from "../artifacts/types/UbiquityFormulas"; +import { UbiquityAlgorithmicDollarManager } from "../artifacts/types/UbiquityAlgorithmicDollarManager"; +import { ERC20Ubiquity } from "../artifacts/types/ERC20Ubiquity"; + +const lastBlock = 19810615; + +// First six bond holders +const bondHolders = [ + "0x89eae71b865a2a39cba62060ab1b40bbffae5b0d", + "0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d", + "0x7c76f4db70b7e2177de10de3e2f668dadcd11108", + "0x0000ce08fa224696a819877070bf378e8b131acf", + "0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6", + "0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2", +]; + +// Bond ids to be fixed +const ids = [1, 2, 3, 4, 5, 6]; + +// uAD3CRV-f amounts locked, in wei +const lpTokenLockedAmounts = [ + "1301000000000000000", + "74603879373206500005186", + "44739174270101943975392", + "1480607760433248019987", + "9351040526163838324896", + "8991650309086743220575", +]; + +// locked weeks +const lpTokenLockedweeks = [176, 208, 208, 2, 208, 208]; + +// shares to compensate (expected values, to be compared with on-chain data) +const sharesToCompensate = [ + "3037709911985672143", + "223798109540617080091011", + "134209409861506101262213", + "4187791150719107540", + "28051425871893200037985", + "26973320392057628638757", +]; + +task("compensateLumpSum", "compensate incorrect staking bond lump sum") + .addParam("address", "The bond holder address") + .addParam("bond", "The bond id") + .setAction( + async ( + taskArgs: { address: string; bond: number }, + { ethers, network } + ) => { + const { address: paramAddress, bond: paramId } = taskArgs; + + if (bondHolders[paramId - 1] !== paramAddress) { + console.error("bond holder address mismatch!!!"); + return; + } + + const UBQ_MINTER_ROLE = ethers.utils.keccak256( + ethers.utils.toUtf8Bytes("UBQ_MINTER_ROLE") + ); + + const UbiquityAlgorithmicDollarManagerAddress = + "0x4DA97a8b831C345dBe6d16FF7432DF2b7b776d98"; + let manager: UbiquityAlgorithmicDollarManager; + + const adminAddress = "0xefC0e701A824943b469a694aC564Aa1efF7Ab7dd"; + let admin: Signer; + + const BondingShareV2Address = + "0x2dA07859613C14F6f05c97eFE37B9B4F212b5eF5"; + let bondingShareV2: BondingShareV2; + let masterChefV2: MasterChefV2; + + const BondingV2Address = "0xC251eCD9f1bD5230823F9A0F99a44A87Ddd4CA38"; + let bondingV2: BondingV2; + + const UbiquityFormulasAddress = + "0x54F528979A50FA8Fe99E0118EbbEE5fC8Ea802F7"; + let ubiquityFormulas: UbiquityFormulas; + + const mineBlock = async (timestamp: number): Promise => { + await network.provider.request({ + method: "evm_mine", + params: [timestamp], + }); + }; + + const mineNBlock = async ( + blockCount: number, + secondsBetweenBlock?: number + ): Promise => { + const blockBefore = await ethers.provider.getBlock("latest"); + const maxMinedBlockPerBatch = 500000; + let blockToMine = blockCount; + let blockTime = blockBefore.timestamp; + while (blockToMine > maxMinedBlockPerBatch) { + // eslint-disable-next-line @typescript-eslint/no-loop-func + const minings = [...Array(maxMinedBlockPerBatch).keys()].map( + (_v, i) => { + const newTs = blockTime + i + (secondsBetweenBlock || 1); + return mineBlock(newTs); + } + ); + // eslint-disable-next-line no-await-in-loop + await Promise.all(minings); + blockToMine -= maxMinedBlockPerBatch; + blockTime = + blockTime + + maxMinedBlockPerBatch - + 1 + + maxMinedBlockPerBatch * (secondsBetweenBlock || 1); + } + const minings = [...Array(blockToMine).keys()].map((_v, i) => { + const newTs = blockTime + i + (secondsBetweenBlock || 1); + return mineBlock(newTs); + }); + // eslint-disable-next-line no-await-in-loop + await Promise.all(minings); + }; + + const resetFork = async (blockNumber: number): Promise => { + await network.provider.request({ + method: "hardhat_reset", + params: [ + { + forking: { + jsonRpcUrl: `https://eth-mainnet.alchemyapi.io/v2/${ + process.env.ALCHEMY_API_KEY || "" + }`, + blockNumber, + }, + }, + ], + }); + }; + + const newMasterChefV2 = async (): Promise => { + const newChefV2: MasterChefV2 = (await ethers.getContractAt( + "MasterChefV2", + "0xdae807071b5AC7B6a2a343beaD19929426dBC998" + )) as MasterChefV2; + + await manager.connect(admin).setMasterChefAddress(newChefV2.address); + await manager.connect(admin).grantRole(UBQ_MINTER_ROLE, adminAddress); + + return newChefV2; + }; + + const init = async (block: number): Promise => { + await resetFork(block); + await network.provider.request({ + method: "hardhat_impersonateAccount", + params: [adminAddress], + }); + + // set up admin, manager, bondingShare and masterChef + admin = ethers.provider.getSigner(adminAddress); + + manager = (await ethers.getContractAt( + "UbiquityAlgorithmicDollarManager", + UbiquityAlgorithmicDollarManagerAddress + )) as UbiquityAlgorithmicDollarManager; + + ubiquityFormulas = (await ethers.getContractAt( + "UbiquityFormulas", + UbiquityFormulasAddress + )) as UbiquityFormulas; + + bondingShareV2 = (await ethers.getContractAt( + "BondingShareV2", + BondingShareV2Address + )) as BondingShareV2; + + masterChefV2 = await newMasterChefV2(); + + bondingV2 = (await ethers.getContractAt( + "BondingV2", + BondingV2Address + )) as BondingV2; + }; + + const query = async ( + bondId: number, + log = false + ): Promise< + [ + BigNumber, + BigNumber, + BigNumber, + BigNumber, + BigNumber, + BigNumber, + BigNumber, + BigNumber, + BigNumber, + number, + number + ] + > => { + const block = await ethers.provider.getBlockNumber(); + const uGOVmultiplier = await masterChefV2.uGOVmultiplier(); + const totalShares = await masterChefV2.totalShares(); + const [lastRewardBlock, accuGOVPerShare] = await masterChefV2.pool(); + const totalSupply = await bondingShareV2.totalSupply(); + const totalLP = await bondingShareV2.totalLP(); + + const pendingUGOV = await masterChefV2.pendingUGOV(bondId); + const [amount, rewardDebt] = await masterChefV2.getBondingShareInfo( + bondId + ); + const bond = await bondingShareV2.getBond(bondId); + const bondExpirationBlock = bond[4]; + + if (log) { + if (bondId) { + console.log(`BOND:${bondId}`); + console.log(`BLOCK:${block}`); + console.log("Bond details", bond.toString()); + console.log("uAD3CRV-f staked", ethers.utils.formatEther(bond[1])); + console.log( + "BondingShare info", + amount.toString(), + rewardDebt.toString() + ); + + // verify that bond contains the same amount of LP tokens staked as shares reported by BondingShareInfo + expect(bond[1], "stake already removed").to.be.equal(amount); + // check expected staked value + expect(bond[1]).to.be.equal(lpTokenLockedAmounts[bondId - 1]); + } + console.log( + "uGOVmultiplier", + uGOVmultiplier.toString(), + ethers.utils.formatEther(uGOVmultiplier) + ); + console.log("lastRewardBlock", lastRewardBlock.toString()); + console.log( + "accuGOVPerShare", + ethers.utils.formatUnits(accuGOVPerShare.toString(), 12) + ); + console.log("Total number of bonds created", totalSupply.toString()); + console.log( + "total LP staked", + ethers.utils.formatEther(totalLP.toString()) + ); + } + return [ + totalShares, + accuGOVPerShare, + pendingUGOV, + amount, + rewardDebt, + totalSupply, + totalLP, + uGOVmultiplier, + lastRewardBlock, + block, + bondExpirationBlock.toNumber(), + ]; + }; + + const applyMultiplier = async (_address: string, bondId: number) => { + console.log( + `\n>> Address ${_address} is the bond holder of bond ${bondId}` + ); + + const whaleAdress = "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"; + await network.provider.request({ + method: "hardhat_impersonateAccount", + params: [_address], + }); + await network.provider.request({ + method: "hardhat_impersonateAccount", + params: [whaleAdress], + }); + + const whale = ethers.provider.getSigner(whaleAdress); + + const bondHolder = ethers.provider.getSigner(_address); + + await whale.sendTransaction({ + to: _address, + value: BigNumber.from(10).pow(18).mul(10), + }); + + try { + const res = await query(bondId, true); + + // if (true) return; + const pendingUGOV = res[2]; + const currentNumberOfShares = res[3]; + const currentLpRewardDebt = res[4]; + const lastRewardBlock = res[8].toString(); + const block = res[9]; + const bondExpirationBlock = res[10]; + + console.log( + `== Block ${block} Last Reward Block ${lastRewardBlock} Bond expiration block ${bondExpirationBlock}` + ); + // updating bond + + const correctNumberOfShares: BigNumber = + await ubiquityFormulas.durationMultiply( + BigNumber.from(lpTokenLockedAmounts[bondId - 1]), + BigNumber.from(lpTokenLockedweeks[bondId - 1]), + BigNumber.from("1000000000000000") + ); + + const numberOfSharesToCompensate = correctNumberOfShares.sub( + currentNumberOfShares + ); + + console.log( + "Current number of shares deposited in MasterChefV21 for this bond:", + currentNumberOfShares.toString() + ); + console.log( + "Number of shares that should have been deposited:", + correctNumberOfShares.toString() + ); + console.log( + "Number of shares to compensate:", + numberOfSharesToCompensate.toString() + ); + + console.log( + "Current LP reward debt", + currentLpRewardDebt.toString(), + ethers.utils.formatEther(currentLpRewardDebt) + ); + + // compensate the lpReward based on numberOfSharesToCompensate + const correctMultiplier: BigNumber = + await ubiquityFormulas.durationMultiply( + BigNumber.from("1000000000000000000"), + BigNumber.from(lpTokenLockedweeks[bondId - 1]), + BigNumber.from("1000000000000000") + ); + + console.log( + "Correct multiplier", + correctMultiplier.toString(), + ethers.utils.formatEther(correctMultiplier) + ); + + const pendingUGOVWithoutRewardDebt = + pendingUGOV.add(currentLpRewardDebt); + const multiplierCompensate = correctMultiplier.sub( + BigNumber.from("1000000000000000000") + ); + + const lumpSumCompensation = pendingUGOVWithoutRewardDebt + .mul(multiplierCompensate) + .div(BigNumber.from("1000000000000000000")); + + const treasuryTwentyPercent = lumpSumCompensation + .mul(BigNumber.from("200000000000000000")) + .div(BigNumber.from("1000000000000000000")); + + console.log( + "Pending UGOV", + pendingUGOV.toString(), + ethers.utils.formatEther(pendingUGOV) + ); + console.log( + "Pending UGOV without reward debt (full reward from bond creation until now)", + pendingUGOVWithoutRewardDebt.toString(), + ethers.utils.formatEther(pendingUGOVWithoutRewardDebt) + ); + console.log( + "Multiplier used to compensate", + multiplierCompensate.toString(), + ethers.utils.formatEther(multiplierCompensate) + ); + console.log( + "Lump sum UBQ compensation", + lumpSumCompensation.toString(), + ethers.utils.formatEther(lumpSumCompensation) + ); + console.log( + "Treasury compensation", + treasuryTwentyPercent.toString(), + ethers.utils.formatEther(treasuryTwentyPercent) + ); + + const treasuryAddress = await manager.treasuryAddress(); + + const ubqToken = (await ethers.getContractAt( + "ERC20Ubiquity", + await manager.governanceTokenAddress(), + admin + )) as ERC20Ubiquity; + + const bondHolderBalanceUBQ = await ubqToken.balanceOf(_address); + const treasuryBalanceUBQ = await ubqToken.balanceOf(treasuryAddress); + + console.log( + "Bond holder UBQ balance BEFORE update", + ethers.utils.formatEther(bondHolderBalanceUBQ) + ); + console.log( + "Treasury UBQ balance BEFORE update", + ethers.utils.formatEther(treasuryBalanceUBQ) + ); + + console.log("! === Sending UBQ to Bond Holder and Treasury === !"); + const txBondHolder = await ubqToken + .connect(admin) + .mint(_address, lumpSumCompensation); + + console.log("Bond holder tx", txBondHolder.hash); + + const txTreasury = await ubqToken + .connect(admin) + .mint(treasuryAddress, treasuryTwentyPercent); + + console.log("Treasury tx", txTreasury.hash); + + const bondHolderBalanceUBQCompensated = await ubqToken.balanceOf( + _address + ); + const treasuryBalanceUBQCompensated = await ubqToken.balanceOf( + treasuryAddress + ); + + console.log( + "Bond holder UBQ balance", + ethers.utils.formatEther(bondHolderBalanceUBQCompensated) + ); + console.log( + "Treasury UBQ balance", + ethers.utils.formatEther(treasuryBalanceUBQCompensated) + ); + console.log("Done!"); + } catch (e) { + console.log(`** ERROR ${(e as Error).message}`); + } + }; + + await init(lastBlock); + + if (paramAddress && paramId) { + // eslint-disable-next-line no-await-in-loop + await applyMultiplier(paramAddress, paramId); + } else { + console.log("Missing input parameters"); + } + } + ); diff --git a/tasks/generateBondingV2MigrationData.ts b/tasks/generateBondingV2MigrationData.ts new file mode 100644 index 0000000..63b5c36 --- /dev/null +++ b/tasks/generateBondingV2MigrationData.ts @@ -0,0 +1,284 @@ +import fs from "fs"; +import path from "path"; +import { task, types } from "hardhat/config"; +import { BigNumber, utils } from "ethers"; +import { Bonding } from "../artifacts/types/Bonding"; +import { + Transaction, + TransactionEvent, + EtherscanResponse, + generateEtherscanQuery, + generateEventLogQuery, + fetchEtherscanApi, +} from "../utils/etherscan"; + +const BONDING_CONTRACT_ADDRESS = "0xC251eCD9f1bD5230823F9A0F99a44A87Ddd4CA38"; +const BONDING_SHARE_CONTRACT_ADDRESS = + "0x2dA07859613C14F6f05c97eFE37B9B4F212b5eF5"; +const TRANSFER_SINGLE_TOPIC_HASH = + "0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62"; + +const CONTRACT_GENESIS_BLOCK = 12595544; +const DEFAULT_OUTPUT_NAME = "bondingv2_migration.json"; + +type CliArgs = { + path: string; +}; + +type ParsedTransaction = { + hash: string; + name: string; + inputs: Record; + from: string; + blockNumber: string; + isError: boolean; + timestamp: string; + transaction: Transaction; +}; + +async function fetchEtherscanBondingContract(): Promise< + EtherscanResponse +> { + return fetchEtherscanApi( + generateEtherscanQuery( + BONDING_CONTRACT_ADDRESS, + CONTRACT_GENESIS_BLOCK, + "latest" + ) + ); +} + +async function fetchTransferSingleEvents(): Promise< + EtherscanResponse +> { + return fetchEtherscanApi( + generateEventLogQuery( + BONDING_SHARE_CONTRACT_ADDRESS, + TRANSFER_SINGLE_TOPIC_HASH, + CONTRACT_GENESIS_BLOCK, + "latest" + ) + ); +} + +function parseTransactions( + bondingContract: Bonding, + transactions: Transaction[] +): ParsedTransaction[] { + return transactions.map((t) => { + const parsedTransaction: ParsedTransaction = { + hash: t.hash, + name: "", + inputs: {}, + from: t.from, + blockNumber: t.blockNumber, + isError: t.isError === "1", + timestamp: new Date(parseInt(t.timeStamp, 10) * 1000).toISOString(), + transaction: t, + }; + if (t.to) { + const input = bondingContract.interface.parseTransaction({ + data: t.input, + }); + // console.log(input); + parsedTransaction.name = input.name; + + parsedTransaction.inputs = Object.fromEntries( + Object.keys(input.args) + .filter((k) => !/^[0-9]+$/.exec(k)) + .map((k) => { + return [k, (input.args[k] as BigNumber).toString()]; + }) + ); + } else { + parsedTransaction.name = "Contract creation"; + } + return parsedTransaction; + }); +} +function calculateTotal(amounts: string[]): string { + const lpsAmount = amounts.reduce( + (t, d) => t.add(BigNumber.from(d)), + BigNumber.from(0) + ); + return utils.formatEther(lpsAmount); +} +function writeToDisk( + migrations: { [key: string]: MigrationData }, + directory: string +) { + fs.writeFileSync( + directory, + JSON.stringify(Object.values(migrations), null, 2) + ); +} + +type Deposit = { + hash: string; + lpsAmount: string; + weeks: string; + bondingShareId: string; + bondingShareAmount: string; + withdraw: null | Withdraw; +}; + +type Withdraw = { + hash: string; + bondingShareId: string; + bondingShareAmount: string; +}; + +type Migration = { + lpsAmount: string; + weeks: string; +}; + +type MigrationData = { + address: string; + deposits: Deposit[]; + migration: null | Migration; +}; + +task( + "generateBondingV2MigrationData", + "Extract the staking state from the bonding contract V2" +) + .addPositionalParam( + "path", + "The path to store migration data", + `./${DEFAULT_OUTPUT_NAME}`, + types.string + ) + .setAction(async (taskArgs: CliArgs, { ethers }) => { + const bondingContract = (await ethers.getContractAt( + "BondingV2", + BONDING_CONTRACT_ADDRESS + )) as Bonding; + + console.log("Arguments: ", taskArgs); + if (!process.env.ETHERSCAN_API_KEY) + throw new Error("ETHERSCAN_API_KEY environment variable must be set"); + + const parsedPath = path.parse(taskArgs.path); + if (!fs.existsSync(parsedPath.dir)) + throw new Error(`Path ${parsedPath.dir} does not exist`); + + try { + const response = await fetchEtherscanBondingContract(); + + const transactions = parseTransactions(bondingContract, response.result); + const deposits = transactions.filter( + (t) => !t.isError && t.name === "deposit" + ); + const withdraws = transactions.filter( + (t) => !t.isError && t.name === "withdraw" + ); + + // Get all the bonding share IDs and values for each transaction ID + + const bondingShareData: { + [key: string]: { id: string; value: string }; + } = {}; + + (await fetchTransferSingleEvents()).result.forEach((ev) => { + const data = ethers.utils.defaultAbiCoder.decode( + ["uint256", "uint256"], + ev.data + ) as [BigNumber, BigNumber]; + + bondingShareData[ev.transactionHash] = { + id: data[0].toString(), + value: data[1].toString(), + }; + }); + + // Generate the migration object + + const migrations: { [key: string]: MigrationData } = {}; + + deposits.forEach((tx) => { + migrations[tx.from] = migrations[tx.from] || { + address: tx.from, + deposits: [], + migration: null, + }; + migrations[tx.from].deposits.push({ + hash: tx.hash, + lpsAmount: tx.inputs._lpsAmount, + weeks: tx.inputs._weeks, + bondingShareId: bondingShareData[tx.hash].id, + bondingShareAmount: bondingShareData[tx.hash].value, + withdraw: null, + }); + }); + + withdraws.forEach((tx) => { + const withdraw: Withdraw = { + hash: tx.hash, + bondingShareId: tx.inputs._id, + bondingShareAmount: tx.inputs._sharesAmount, + }; + + const deposit = migrations[tx.from].deposits.find( + (d) => d.bondingShareId === withdraw.bondingShareId + ); + if (!deposit) + throw new Error("All withdraws should have been deposited"); + + deposit.withdraw = withdraw; + if (deposit.withdraw.bondingShareAmount < deposit.bondingShareAmount) { + console.log("Withdrew less than deposited: ", deposit); + } + }); + + Object.values(migrations).forEach((m) => { + const depositsToMigrate = m.deposits.filter((d) => !d.withdraw); + //console.log(depositsToMigrate); + if (depositsToMigrate.length > 0) { + const lpsAmount = depositsToMigrate.reduce( + (t, d) => t.add(BigNumber.from(d.lpsAmount)), + BigNumber.from(-1) + ); + console.log(lpsAmount); + const weeks = depositsToMigrate + .reduce( + (t, d) => + t.add(BigNumber.from(d.weeks).mul(BigNumber.from(d.lpsAmount))), + BigNumber.from(-1) + ) + .div(lpsAmount); + + migrations[m.address].migration = { + lpsAmount: lpsAmount.toString(), + weeks: weeks.toString(), + }; + } + }); + + // Print and save to disk + + console.log(JSON.stringify(migrations, null, 2)); + + const toMigrateOriginals: string[] = []; + const toMigrateBalance: string[] = []; + const toMigrateWeeks: string[] = []; + + Object.values(migrations).forEach((m) => { + if (m.migration) { + toMigrateOriginals.push(m.address); + toMigrateBalance.push(m.migration.lpsAmount); + toMigrateWeeks.push(m.migration.weeks); + } + }); + + console.log("Addresses", toMigrateOriginals); + console.log("Balances", toMigrateBalance); + console.log("Weeks", toMigrateWeeks); + console.log("total addresses", toMigrateOriginals.length); + console.log("total LP to be migrated", calculateTotal(toMigrateBalance)); + writeToDisk(migrations, taskArgs.path); + console.log("Results saved to: ", path.resolve(taskArgs.path)); + } catch (e) { + console.error("There was an issue with the task", e); + } + }); diff --git a/tasks/getBondingV2Transactions.ts b/tasks/getBondingV2Transactions.ts new file mode 100644 index 0000000..2225b9b --- /dev/null +++ b/tasks/getBondingV2Transactions.ts @@ -0,0 +1,186 @@ +import fs from "fs"; +import path from "path"; +import { task, types } from "hardhat/config"; +import * as ethers from "ethers"; +import * as ABI from "../deployments/mainnet/BondingV2.json"; // Contract ABI +import { + Transaction, + EtherscanResponse, + generateEtherscanQuery, + fetchEtherscanApi, +} from "../utils/etherscan"; + +const inter = new ethers.utils.Interface(ABI.abi); + +const BONDING_CONTRACT_ADDRESS = "0xC251eCD9f1bD5230823F9A0F99a44A87Ddd4CA38"; +const CONTRACT_GENESIS_BLOCK = 12595544; +const DEFAULT_OUTPUT_NAME = "bonding_transactions.json"; +const contractFunctions = ABI.abi + .filter((a) => a.type === "function") + .map((a) => a.name as string); + +type CliArgs = { + path: string; + startBlock: number; + endBlock?: number; + name: + | "" + | "deposit" + | "setBlockCountInAWeek" + | "crvPriceReset" + | "uADPriceReset"; + isError: boolean; + listFunctions: boolean; +}; + +type ParsedTransaction = { + name: string; + inputs: Record; + from: string; + blockNumber: string; + isError: boolean; + timestamp: string; + transaction: Transaction; +}; + +async function fetchEtherscanBondingContract( + filter: CliArgs +): Promise> { + const { startBlock } = filter; + const endBlock = filter.endBlock || "latest"; + return fetchEtherscanApi( + generateEtherscanQuery(BONDING_CONTRACT_ADDRESS, startBlock, endBlock) + ); +} + +function parseTransactions(transactions: Transaction[]): ParsedTransaction[] { + return transactions.map((t) => { + const parsedTransaction: ParsedTransaction = { + name: "", + inputs: {}, + from: t.from, + blockNumber: t.blockNumber, + isError: t.isError === "1", + timestamp: new Date(parseInt(t.timeStamp, 10) * 1000).toISOString(), + transaction: t, + }; + if (t.to) { + const input = inter.parseTransaction({ data: t.input }); + parsedTransaction.name = input.name; + + parsedTransaction.inputs = Object.fromEntries( + Object.keys(input.args) + .filter((k) => !/^[0-9]+$/.exec(k)) + .map((k) => { + return [k, (input.args[k] as ethers.BigNumber).toString()]; + }) + ); + } else { + parsedTransaction.name = "Contract creation"; + } + return parsedTransaction; + }); +} + +function filterTransactions( + transactions: ParsedTransaction[], + args: CliArgs +): ParsedTransaction[] { + return transactions.filter((t) => { + return (!args.name || t.name === args.name) && args.isError === t.isError; + }); +} + +function writeToDisk(transactions: ParsedTransaction[], directory: string) { + fs.writeFileSync( + directory, + JSON.stringify( + transactions.map((t) => t.transaction), + null, + 2 + ) + ); +} + +function printInGroups(items: string[], groups: number) { + const pad = Math.max(...items.map((f) => f.length)) + 1; + contractFunctions + .reduce((r, e, i) => { + i % groups ? r[r.length - 1].push(e) : r.push([e]); + return r; + }, []) + .forEach((funs) => + console.log(" ", ...funs.map((f) => f.padEnd(pad, " "))) + ); +} + +task( + "getBondingV2Transactions", + "Extract the bonding contract transactions from Etherscan API and save them to a file" +) + .addPositionalParam( + "path", + "The path to store the bonding contracts", + `./${DEFAULT_OUTPUT_NAME}`, + types.string + ) + .addOptionalParam( + "startBlock", + "The starting block for the Etherscan request (defaults is contract creation block)", + CONTRACT_GENESIS_BLOCK, + types.int + ) + .addOptionalParam( + "endBlock", + "The end block for the Etherscan request (defaults to latest block)", + undefined, + types.int + ) + .addOptionalParam( + "name", + "The function name (use empty string for all) (ex: deposit, crvPriceReset, uADPriceReset, setBlockCountInAWeek)", + "deposit", + types.string + ) + .addOptionalParam( + "isError", + "Select transactions that were errors", + false, + types.boolean + ) + .setAction(async (taskArgs: CliArgs) => { + console.log("Arguments: ", taskArgs); + if (!process.env.ETHERSCAN_API_KEY) + throw new Error("ETHERSCAN_API_KEY environment variable must be set"); + + const parsedPath = path.parse(taskArgs.path); + if (!fs.existsSync(parsedPath.dir)) + throw new Error(`Path ${parsedPath.dir} does not exist`); + + console.log("Contract functions:"); + printInGroups(contractFunctions, 4); + + if (taskArgs.name && contractFunctions.indexOf(taskArgs.name) === -1) { + throw new Error(`Function does not exists of the contract`); + } + + try { + const response = await fetchEtherscanBondingContract(taskArgs); + const transactions = parseTransactions(response.result); + console.log("Total results: ", transactions.length); + const filteredTransactions = filterTransactions(transactions, taskArgs); + console.log("Filtered results: ", filteredTransactions.length); + console.table(filteredTransactions, [ + "name", + "inputs", + "from", + "blockNumber", + "isError", + "timestamp", + ]); + writeToDisk(filteredTransactions, taskArgs.path); + console.log("Results saved to: ", path.resolve(taskArgs.path)); + } catch (e) { + console.error("There was an issue with the task", e); + } + }); diff --git a/tasks/getMasterChefTransactions.ts b/tasks/getMasterChefTransactions.ts new file mode 100644 index 0000000..f626364 --- /dev/null +++ b/tasks/getMasterChefTransactions.ts @@ -0,0 +1,187 @@ +import fs from "fs"; +import path from "path"; +import { task, types } from "hardhat/config"; +import * as ethers from "ethers"; +import * as ABI from "../deployments/mainnet/MasterChef.json"; // Contract ABI +import { + Transaction, + EtherscanResponse, + generateEtherscanQuery, + fetchEtherscanApi, +} from "../utils/etherscan"; + +const inter = new ethers.utils.Interface(ABI.abi); + +const MASTERCHEF_CONTRACT_ADDRESS = "0x8fFCf9899738e4633A721904609ffCa0a2C44f3D"; +const CONTRACT_GENESIS_BLOCK = 12595544; +const DEFAULT_OUTPUT_NAME = "masterchef_transactions.json"; +const contractFunctions = ABI.abi + .filter((a) => a.type === "function") + .map((a) => a.name as string); + +type CliArgs = { + path: string; + startBlock: number; + endBlock?: number; + name: + | "" + | "deposit" + | "setBlockCountInAWeek" + | "crvPriceReset" + | "uADPriceReset"; + isError: boolean; + listFunctions: boolean; +}; + +type ParsedTransaction = { + name: string; + inputs: Record; + from: string; + blockNumber: string; + isError: boolean; + timestamp: string; + transaction: Transaction; +}; + +async function fetchEtherscanBondingContract( + filter: CliArgs +): Promise> { + const { startBlock } = filter; + const endBlock = filter.endBlock || "latest"; + return fetchEtherscanApi( + generateEtherscanQuery(MASTERCHEF_CONTRACT_ADDRESS, startBlock, endBlock) + ); +} + +function parseTransactions(transactions: Transaction[]): ParsedTransaction[] { + return transactions.map((t) => { + const parsedTransaction: ParsedTransaction = { + name: "", + inputs: {}, + from: t.from, + blockNumber: t.blockNumber, + isError: t.isError === "1", + timestamp: new Date(parseInt(t.timeStamp, 10) * 1000).toISOString(), + transaction: t, + }; + if (t.to) { + const input = inter.parseTransaction({ data: t.input }); + parsedTransaction.name = input.name; + + parsedTransaction.inputs = Object.fromEntries( + Object.keys(input.args) + .filter((k) => !/^[0-9]+$/.exec(k)) + .map((k) => { + return [k, (input.args[k] as ethers.BigNumber).toString()]; + }) + ); + } else { + parsedTransaction.name = "Contract creation"; + } + return parsedTransaction; + }); +} + +function filterTransactions( + transactions: ParsedTransaction[], + args: CliArgs +): ParsedTransaction[] { + return transactions.filter((t) => { + return (!args.name || t.name === args.name) && args.isError === t.isError; + }); +} + +function writeToDisk(transactions: ParsedTransaction[], directory: string) { + fs.writeFileSync( + directory, + JSON.stringify( + transactions.map((t) => t.transaction), + null, + 2 + ) + ); +} + +function printInGroups(items: string[], groups: number) { + const pad = Math.max(...items.map((f) => f.length)) + 1; + contractFunctions + .reduce((r, e, i) => { + i % groups ? r[r.length - 1].push(e) : r.push([e]); + return r; + }, []) + .forEach((funs) => + console.log(" ", ...funs.map((f) => f.padEnd(pad, " "))) + ); +} + +task( + "getMasterChefTransactions", + "Extract the bonding contract transactions from Etherscan API and save them to a file" +) + .addPositionalParam( + "path", + "The path to store the bonding contracts", + `./${DEFAULT_OUTPUT_NAME}`, + types.string + ) + .addOptionalParam( + "startBlock", + "The starting block for the Etherscan request (defaults is contract creation block)", + CONTRACT_GENESIS_BLOCK, + types.int + ) + .addOptionalParam( + "endBlock", + "The end block for the Etherscan request (defaults to latest block)", + undefined, + types.int + ) + .addOptionalParam( + "name", + "The function name (use empty string for all) (ex: deposit, crvPriceReset, uADPriceReset, setBlockCountInAWeek)", + "deposit", + types.string + ) + .addOptionalParam( + "isError", + "Select transactions that were errors", + false, + types.boolean + ) + .setAction(async (taskArgs: CliArgs) => { + console.log("Arguments: ", taskArgs); + if (!process.env.ETHERSCAN_API_KEY) + throw new Error("ETHERSCAN_API_KEY environment variable must be set"); + + const parsedPath = path.parse(taskArgs.path); + if (!fs.existsSync(parsedPath.dir)) + throw new Error(`Path ${parsedPath.dir} does not exist`); + + console.log("Contract functions:"); + printInGroups(contractFunctions, 4); + + if (taskArgs.name && contractFunctions.indexOf(taskArgs.name) === -1) { + throw new Error(`Function does not exists of the contract`); + } + + try { + const response = await fetchEtherscanBondingContract(taskArgs); + const transactions = parseTransactions(response.result); + console.log("Total results: ", transactions.length); + // const filteredTransactions = filterTransactions(transactions, taskArgs); + const filteredTransactions = transactions; + console.log("Filtered results: ", filteredTransactions.length); + console.table(filteredTransactions, [ + "name", + "inputs", + "from", + "blockNumber", + "isError", + "timestamp", + ]); + writeToDisk(filteredTransactions, taskArgs.path); + console.log("Results saved to: ", path.resolve(taskArgs.path)); + } catch (e) { + console.error("There was an issue with the task", e); + } + }); diff --git a/tasks/getMasterChefV21Transactions.ts b/tasks/getMasterChefV21Transactions.ts new file mode 100644 index 0000000..7809249 --- /dev/null +++ b/tasks/getMasterChefV21Transactions.ts @@ -0,0 +1,187 @@ +import fs from "fs"; +import path from "path"; +import { task, types } from "hardhat/config"; +import * as ethers from "ethers"; +import * as ABI from "../deployments/mainnet/MasterChefV2.json"; // Contract ABI +import { + Transaction, + EtherscanResponse, + generateEtherscanQuery, + fetchEtherscanApi, +} from "../utils/etherscan"; + +const inter = new ethers.utils.Interface(ABI.abi); + +const MASTERCHEF_CONTRACT_ADDRESS = "0xdae807071b5AC7B6a2a343beaD19929426dBC998"; +const CONTRACT_GENESIS_BLOCK = 12595544; +const DEFAULT_OUTPUT_NAME = "masterchef_transactions.json"; +const contractFunctions = ABI.abi + .filter((a) => a.type === "function") + .map((a) => a.name as string); + +type CliArgs = { + path: string; + startBlock: number; + endBlock?: number; + name: + | "" + | "deposit" + | "setBlockCountInAWeek" + | "crvPriceReset" + | "uADPriceReset"; + isError: boolean; + listFunctions: boolean; +}; + +type ParsedTransaction = { + name: string; + inputs: Record; + from: string; + blockNumber: string; + isError: boolean; + timestamp: string; + transaction: Transaction; +}; + +async function fetchEtherscanBondingContract( + filter: CliArgs +): Promise> { + const { startBlock } = filter; + const endBlock = filter.endBlock || "latest"; + return fetchEtherscanApi( + generateEtherscanQuery(MASTERCHEF_CONTRACT_ADDRESS, startBlock, endBlock) + ); +} + +function parseTransactions(transactions: Transaction[]): ParsedTransaction[] { + return transactions.map((t) => { + const parsedTransaction: ParsedTransaction = { + name: "", + inputs: {}, + from: t.from, + blockNumber: t.blockNumber, + isError: t.isError === "1", + timestamp: new Date(parseInt(t.timeStamp, 10) * 1000).toISOString(), + transaction: t, + }; + if (t.to) { + const input = inter.parseTransaction({ data: t.input }); + parsedTransaction.name = input.name; + + parsedTransaction.inputs = Object.fromEntries( + Object.keys(input.args) + .filter((k) => !/^[0-9]+$/.exec(k)) + .map((k) => { + return [k, (input.args[k] as ethers.BigNumber).toString()]; + }) + ); + } else { + parsedTransaction.name = "Contract creation"; + } + return parsedTransaction; + }); +} + +function filterTransactions( + transactions: ParsedTransaction[], + args: CliArgs +): ParsedTransaction[] { + return transactions.filter((t) => { + return (!args.name || t.name === args.name) && args.isError === t.isError; + }); +} + +function writeToDisk(transactions: ParsedTransaction[], directory: string) { + fs.writeFileSync( + directory, + JSON.stringify( + transactions.map((t) => t.transaction), + null, + 2 + ) + ); +} + +function printInGroups(items: string[], groups: number) { + const pad = Math.max(...items.map((f) => f.length)) + 1; + contractFunctions + .reduce((r, e, i) => { + i % groups ? r[r.length - 1].push(e) : r.push([e]); + return r; + }, []) + .forEach((funs) => + console.log(" ", ...funs.map((f) => f.padEnd(pad, " "))) + ); +} + +task( + "getMasterChefV21Transactions", + "Extract the contract transactions from Etherscan API and save them to a file" +) + .addPositionalParam( + "path", + "The path to store the bonding contracts", + `./${DEFAULT_OUTPUT_NAME}`, + types.string + ) + .addOptionalParam( + "startBlock", + "The starting block for the Etherscan request (defaults is contract creation block)", + CONTRACT_GENESIS_BLOCK, + types.int + ) + .addOptionalParam( + "endBlock", + "The end block for the Etherscan request (defaults to latest block)", + undefined, + types.int + ) + .addOptionalParam( + "name", + "The function name (use empty string for all) (ex: deposit, crvPriceReset, uADPriceReset, setBlockCountInAWeek)", + "deposit", + types.string + ) + .addOptionalParam( + "isError", + "Select transactions that were errors", + false, + types.boolean + ) + .setAction(async (taskArgs: CliArgs) => { + console.log("Arguments: ", taskArgs); + if (!process.env.ETHERSCAN_API_KEY) + throw new Error("ETHERSCAN_API_KEY environment variable must be set"); + + const parsedPath = path.parse(taskArgs.path); + if (!fs.existsSync(parsedPath.dir)) + throw new Error(`Path ${parsedPath.dir} does not exist`); + + console.log("Contract functions:"); + printInGroups(contractFunctions, 4); + + if (taskArgs.name && contractFunctions.indexOf(taskArgs.name) === -1) { + throw new Error(`Function does not exists of the contract`); + } + + try { + const response = await fetchEtherscanBondingContract(taskArgs); + const transactions = parseTransactions(response.result); + console.log("Total results: ", transactions.length); + // const filteredTransactions = filterTransactions(transactions, taskArgs); + const filteredTransactions = transactions; + console.log("Filtered results: ", filteredTransactions.length); + console.table(filteredTransactions, [ + "name", + "inputs", + "from", + "blockNumber", + "isError", + "timestamp", + ]); + writeToDisk(filteredTransactions, taskArgs.path); + console.log("Results saved to: ", path.resolve(taskArgs.path)); + } catch (e) { + console.error("There was an issue with the task", e); + } + }); diff --git a/tasks/getMasterChefV2Transactions.ts b/tasks/getMasterChefV2Transactions.ts new file mode 100644 index 0000000..9d51803 --- /dev/null +++ b/tasks/getMasterChefV2Transactions.ts @@ -0,0 +1,187 @@ +import fs from "fs"; +import path from "path"; +import { task, types } from "hardhat/config"; +import * as ethers from "ethers"; +import * as ABI from "../deployments/mainnet/MasterChefV2.json"; // Contract ABI +import { + Transaction, + EtherscanResponse, + generateEtherscanQuery, + fetchEtherscanApi, +} from "../utils/etherscan"; + +const inter = new ethers.utils.Interface(ABI.abi); + +const MASTERCHEF_CONTRACT_ADDRESS = "0xB8Ec70D24306ECEF9D4aaf9986DCb1DA5736A997"; +const CONTRACT_GENESIS_BLOCK = 12595544; +const DEFAULT_OUTPUT_NAME = "masterchef_transactions.json"; +const contractFunctions = ABI.abi + .filter((a) => a.type === "function") + .map((a) => a.name as string); + +type CliArgs = { + path: string; + startBlock: number; + endBlock?: number; + name: + | "" + | "deposit" + | "setBlockCountInAWeek" + | "crvPriceReset" + | "uADPriceReset"; + isError: boolean; + listFunctions: boolean; +}; + +type ParsedTransaction = { + name: string; + inputs: Record; + from: string; + blockNumber: string; + isError: boolean; + timestamp: string; + transaction: Transaction; +}; + +async function fetchEtherscanBondingContract( + filter: CliArgs +): Promise> { + const { startBlock } = filter; + const endBlock = filter.endBlock || "latest"; + return fetchEtherscanApi( + generateEtherscanQuery(MASTERCHEF_CONTRACT_ADDRESS, startBlock, endBlock) + ); +} + +function parseTransactions(transactions: Transaction[]): ParsedTransaction[] { + return transactions.map((t) => { + const parsedTransaction: ParsedTransaction = { + name: "", + inputs: {}, + from: t.from, + blockNumber: t.blockNumber, + isError: t.isError === "1", + timestamp: new Date(parseInt(t.timeStamp, 10) * 1000).toISOString(), + transaction: t, + }; + if (t.to) { + const input = inter.parseTransaction({ data: t.input }); + parsedTransaction.name = input.name; + + parsedTransaction.inputs = Object.fromEntries( + Object.keys(input.args) + .filter((k) => !/^[0-9]+$/.exec(k)) + .map((k) => { + return [k, (input.args[k] as ethers.BigNumber).toString()]; + }) + ); + } else { + parsedTransaction.name = "Contract creation"; + } + return parsedTransaction; + }); +} + +function filterTransactions( + transactions: ParsedTransaction[], + args: CliArgs +): ParsedTransaction[] { + return transactions.filter((t) => { + return (!args.name || t.name === args.name) && args.isError === t.isError; + }); +} + +function writeToDisk(transactions: ParsedTransaction[], directory: string) { + fs.writeFileSync( + directory, + JSON.stringify( + transactions.map((t) => t.transaction), + null, + 2 + ) + ); +} + +function printInGroups(items: string[], groups: number) { + const pad = Math.max(...items.map((f) => f.length)) + 1; + contractFunctions + .reduce((r, e, i) => { + i % groups ? r[r.length - 1].push(e) : r.push([e]); + return r; + }, []) + .forEach((funs) => + console.log(" ", ...funs.map((f) => f.padEnd(pad, " "))) + ); +} + +task( + "getMasterChefV2Transactions", + "Extract the contract transactions from Etherscan API and save them to a file" +) + .addPositionalParam( + "path", + "The path to store the bonding contracts", + `./${DEFAULT_OUTPUT_NAME}`, + types.string + ) + .addOptionalParam( + "startBlock", + "The starting block for the Etherscan request (defaults is contract creation block)", + CONTRACT_GENESIS_BLOCK, + types.int + ) + .addOptionalParam( + "endBlock", + "The end block for the Etherscan request (defaults to latest block)", + undefined, + types.int + ) + .addOptionalParam( + "name", + "The function name (use empty string for all) (ex: deposit, crvPriceReset, uADPriceReset, setBlockCountInAWeek)", + "deposit", + types.string + ) + .addOptionalParam( + "isError", + "Select transactions that were errors", + false, + types.boolean + ) + .setAction(async (taskArgs: CliArgs) => { + console.log("Arguments: ", taskArgs); + if (!process.env.ETHERSCAN_API_KEY) + throw new Error("ETHERSCAN_API_KEY environment variable must be set"); + + const parsedPath = path.parse(taskArgs.path); + if (!fs.existsSync(parsedPath.dir)) + throw new Error(`Path ${parsedPath.dir} does not exist`); + + console.log("Contract functions:"); + printInGroups(contractFunctions, 4); + + if (taskArgs.name && contractFunctions.indexOf(taskArgs.name) === -1) { + throw new Error(`Function does not exists of the contract`); + } + + try { + const response = await fetchEtherscanBondingContract(taskArgs); + const transactions = parseTransactions(response.result); + console.log("Total results: ", transactions.length); + // const filteredTransactions = filterTransactions(transactions, taskArgs); + const filteredTransactions = transactions; + console.log("Filtered results: ", filteredTransactions.length); + console.table(filteredTransactions, [ + "name", + "inputs", + "from", + "blockNumber", + "isError", + "timestamp", + ]); + writeToDisk(filteredTransactions, taskArgs.path); + console.log("Results saved to: ", path.resolve(taskArgs.path)); + } catch (e) { + console.error("There was an issue with the task", e); + } + }); diff --git a/tasks/index.ts b/tasks/index.ts index b134d69..793ba13 100644 --- a/tasks/index.ts +++ b/tasks/index.ts @@ -2,9 +2,16 @@ // not with 'import * as tasks from ...' import "./accountsFromMnemonic"; import "./accounts"; +import "./compensateLumpSum"; +import "./compensateFromLastGetReward"; import "./get-code"; +import "./getMasterChefTransactions"; +import "./getMasterChefV2Transactions"; +import "./getMasterChefV21Transactions"; import "./getBondingTransactions"; +import "./getBondingV2Transactions"; import "./generateBondingMigrationData"; +import "./generateBondingV2MigrationData"; import "./blockNumber"; import "./chainId"; import "./tx"; @@ -17,6 +24,8 @@ import "./manager"; import "./adminRemoveLiquidity"; import "./excessDollarDistribution"; import "./revoke"; +import "./simulateBondingDebt"; import "./simulateMigrate"; +import "./simulateStakingMultiplierFix"; import "./priceReset"; import "./deployYieldProxyLocally"; diff --git a/tasks/simulateBondingDebt.ts b/tasks/simulateBondingDebt.ts new file mode 100644 index 0000000..4ab91ea --- /dev/null +++ b/tasks/simulateBondingDebt.ts @@ -0,0 +1,213 @@ +/* eslint-disable @typescript-eslint/no-loop-func */ +/* eslint-disable @typescript-eslint/restrict-template-expressions */ +/* eslint-disable @typescript-eslint/no-unsafe-call */ +/* eslint-disable @typescript-eslint/no-unsafe-member-access */ +/* eslint-disable @typescript-eslint/no-unsafe-assignment */ + +import { task } from "hardhat/config"; +import "@nomiclabs/hardhat-waffle"; +import { expect } from "chai"; +import { BigNumber, Signer } from "ethers"; + +import { BondingShareV2 } from "../artifacts/types/BondingShareV2"; +import { MasterChefV2 } from "../artifacts/types/MasterChefV2"; +import { BondingDebt } from "../artifacts/types/BondingDebt"; +import { BondingV2 } from "../artifacts/types/BondingV2"; +import { ERC20Ubiquity } from "../artifacts/types/ERC20Ubiquity"; +import { UbiquityAlgorithmicDollarManager } from "../artifacts/types/UbiquityAlgorithmicDollarManager"; + +const lastBlock = 19810615; + +const toClaim = [ + "0x89eae71b865a2a39cba62060ab1b40bbffae5b0d", + "0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d", + "0x7c76f4db70b7e2177de10de3e2f668dadcd11108", + "0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6", + "0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2", +]; + +task("simulateBondingDebt", "bonding debt contract deployment and claim") + .addOptionalParam("address", "The address to simulate bonding ") + .setAction(async (taskArgs: { address: string }, { ethers, network }) => { + const { address: paramAddress } = taskArgs; + + const UBQ_MINTER_ROLE = ethers.utils.keccak256( + ethers.utils.toUtf8Bytes("UBQ_MINTER_ROLE") + ); + + const UbiquityAlgorithmicDollarManagerAddress = + "0x4DA97a8b831C345dBe6d16FF7432DF2b7b776d98"; + let manager: UbiquityAlgorithmicDollarManager; + + const adminAddress = "0xefC0e701A824943b469a694aC564Aa1efF7Ab7dd"; + let admin: Signer; + + const BondingShareV2Address = "0x2dA07859613C14F6f05c97eFE37B9B4F212b5eF5"; + let bondingShareV2: BondingShareV2; + + let masterChefV2: MasterChefV2; + + let bondingDebt: BondingDebt; + + const BondingV2Address = "0xC251eCD9f1bD5230823F9A0F99a44A87Ddd4CA38"; + let bondingV2: BondingV2; + + const mineBlock = async (timestamp: number): Promise => { + await network.provider.request({ + method: "evm_mine", + params: [timestamp], + }); + }; + + const mineNBlock = async ( + blockCount: number, + secondsBetweenBlock?: number + ): Promise => { + const blockBefore = await ethers.provider.getBlock("latest"); + const maxMinedBlockPerBatch = 5000; + let blockToMine = blockCount; + let blockTime = blockBefore.timestamp; + while (blockToMine > maxMinedBlockPerBatch) { + // eslint-disable-next-line @typescript-eslint/no-loop-func + const minings = [...Array(maxMinedBlockPerBatch).keys()].map( + (_v, i) => { + const newTs = blockTime + i + (secondsBetweenBlock || 1); + return mineBlock(newTs); + } + ); + // eslint-disable-next-line no-await-in-loop + await Promise.all(minings); + blockToMine -= maxMinedBlockPerBatch; + blockTime = + blockTime + + maxMinedBlockPerBatch - + 1 + + maxMinedBlockPerBatch * (secondsBetweenBlock || 1); + } + const minings = [...Array(blockToMine).keys()].map((_v, i) => { + const newTs = blockTime + i + (secondsBetweenBlock || 1); + return mineBlock(newTs); + }); + // eslint-disable-next-line no-await-in-loop + await Promise.all(minings); + }; + + // deploy BondingDebt contract + const newBondingDebt = async (): Promise => { + const newBondingDebtContract: BondingDebt = (await ( + await ethers.getContractFactory("BondingDebt") + ).deploy(UbiquityAlgorithmicDollarManagerAddress)) as BondingDebt; + + await manager + .connect(admin) + .grantRole(UBQ_MINTER_ROLE, newBondingDebtContract.address); + console.log( + "UBQ_MINTER_ROLE granted to BondingDebt @", + newBondingDebtContract.address + ); + + return newBondingDebtContract; + }; + + const resetFork = async (blockNumber: number): Promise => { + await network.provider.request({ + method: "hardhat_reset", + params: [ + { + forking: { + jsonRpcUrl: `https://eth-mainnet.alchemyapi.io/v2/${ + process.env.ALCHEMY_API_KEY || "" + }`, + blockNumber, + }, + }, + ], + }); + }; + + const newMasterChefV2 = async (): Promise => { + const newChefV2: MasterChefV2 = (await ethers.getContractAt( + "MasterChefV2", + "0xdae807071b5AC7B6a2a343beaD19929426dBC998" + )) as MasterChefV2; + + await manager.connect(admin).setMasterChefAddress(newChefV2.address); + await manager + .connect(admin) + .grantRole(UBQ_MINTER_ROLE, newChefV2.address); + + return newChefV2; + }; + + const init = async (block: number): Promise => { + await resetFork(block); + await network.provider.request({ + method: "hardhat_impersonateAccount", + params: [adminAddress], + }); + + admin = ethers.provider.getSigner(adminAddress); + + manager = (await ethers.getContractAt( + "UbiquityAlgorithmicDollarManager", + UbiquityAlgorithmicDollarManagerAddress + )) as UbiquityAlgorithmicDollarManager; + + bondingDebt = await newBondingDebt(); + }; + + const claimBondingDebt = async (_address: string) => { + console.log(`\n>> Processing claim for address ${_address}`); + await network.provider.request({ + method: "hardhat_impersonateAccount", + params: [_address], + }); + + const treasuryAddress = await manager.treasuryAddress(); + console.log("Treasury address", treasuryAddress); + const ubqToken = (await ethers.getContractAt( + "ERC20Ubiquity", + await manager.governanceTokenAddress(), + admin + )) as ERC20Ubiquity; + + let bondHolderBalanceUBQ = await ubqToken.balanceOf(_address); + let treasuryBalanceUBQ = await ubqToken.balanceOf(treasuryAddress); + + console.log( + "Bond holder UBQ balance BEFORE claim", + ethers.utils.formatEther(bondHolderBalanceUBQ) + ); + console.log( + "Treasury UBQ balance BEFORE claim", + ethers.utils.formatEther(treasuryBalanceUBQ) + ); + + console.log("BondingDebt address", bondingDebt.address); + console.log("isUserClaimed:", await bondingDebt.isUserClaimed(_address)); + + await bondingDebt.connect(admin).claim(_address); + + bondHolderBalanceUBQ = await ubqToken.balanceOf(_address); + treasuryBalanceUBQ = await ubqToken.balanceOf(treasuryAddress); + console.log( + "Bond holder UBQ balance AFTER claim", + ethers.utils.formatEther(bondHolderBalanceUBQ) + ); + console.log( + "Treasury UBQ balance AFTER claim", + ethers.utils.formatEther(treasuryBalanceUBQ) + ); + console.log("isUserClaimed:", await bondingDebt.isUserClaimed(_address)); + }; + + await init(lastBlock); + if (paramAddress) { + await claimBondingDebt(paramAddress); + } else { + for (let i = 0; i < toClaim.length; i += 1) { + // eslint-disable-next-line no-await-in-loop + await claimBondingDebt(toClaim[i]); + } + } + }); diff --git a/tasks/simulateStakingMultiplierFix.ts b/tasks/simulateStakingMultiplierFix.ts new file mode 100644 index 0000000..a4cee1a --- /dev/null +++ b/tasks/simulateStakingMultiplierFix.ts @@ -0,0 +1,436 @@ +/* eslint-disable @typescript-eslint/no-loop-func */ +/* eslint-disable @typescript-eslint/restrict-template-expressions */ +/* eslint-disable @typescript-eslint/no-unsafe-call */ +/* eslint-disable @typescript-eslint/no-unsafe-member-access */ +/* eslint-disable @typescript-eslint/no-unsafe-assignment */ + +import { task } from "hardhat/config"; +import "@nomiclabs/hardhat-waffle"; +import { expect } from "chai"; +import { BigNumber, Signer } from "ethers"; +import fs from "fs"; + +import { BondingShareV2 } from "../artifacts/types/BondingShareV2"; +import { MasterChefV2 } from "../artifacts/types/MasterChefV2"; +import { BondingV2 } from "../artifacts/types/BondingV2"; +import { UbiquityFormulas } from "../artifacts/types/UbiquityFormulas"; +import { UbiquityAlgorithmicDollarManager } from "../artifacts/types/UbiquityAlgorithmicDollarManager"; + +const lastBlock = 19810615; + +// First six bond holders +const bondHolders = [ + "0x89eae71b865a2a39cba62060ab1b40bbffae5b0d", + "0x4007ce2083c7f3e18097aeb3a39bb8ec149a341d", + "0x7c76f4db70b7e2177de10de3e2f668dadcd11108", + "0x0000ce08fa224696a819877070bf378e8b131acf", + "0xa53a6fe2d8ad977ad926c485343ba39f32d3a3f6", + "0xcefd0e73cc48b0b9d4c8683e52b7d7396600abb2", +]; + +// Bond ids to be fixed +const ids = [1, 2, 3, 4, 5, 6]; + +// uAD3CRV-f amounts locked, in wei +const lpTokenLockedAmounts = [ + "1301000000000000000", + "74603879373206500005186", + "44739174270101943975392", + "1480607760433248019987", + "9351040526163838324896", + "8991650309086743220575", +]; + +// locked weeks +const lpTokenLockedweeks = [176, 208, 208, 2, 208, 208]; + +// shares to compensate (expected values, to be compared with on-chain data) +const sharesToCompensate = [ + "3037709911985672143", + "223798109540617080091011", + "134209409861506101262213", + "4187791150719107540", + "28051425871893200037985", + "26973320392057628638757", +]; + +task("simulateStakingMultiplierFix", "simulate migration of one address") + .addOptionalParam("addressFix", "The bond holder address") + .addOptionalParam("idFix", "The bond id") + .setAction( + async ( + taskArgs: { addressFix: string; idFix: number }, + { ethers, network } + ) => { + const { addressFix: paramAddress, idFix: paramId } = taskArgs; + + const UBQ_MINTER_ROLE = ethers.utils.keccak256( + ethers.utils.toUtf8Bytes("UBQ_MINTER_ROLE") + ); + + const UbiquityAlgorithmicDollarManagerAddress = + "0x4DA97a8b831C345dBe6d16FF7432DF2b7b776d98"; + let manager: UbiquityAlgorithmicDollarManager; + + const adminAddress = "0xefC0e701A824943b469a694aC564Aa1efF7Ab7dd"; + let admin: Signer; + + const BondingShareV2Address = + "0x2dA07859613C14F6f05c97eFE37B9B4F212b5eF5"; + let bondingShareV2: BondingShareV2; + let masterChefV2: MasterChefV2; + + const BondingV2Address = "0xC251eCD9f1bD5230823F9A0F99a44A87Ddd4CA38"; + let bondingV2: BondingV2; + + const UbiquityFormulasAddress = + "0x54F528979A50FA8Fe99E0118EbbEE5fC8Ea802F7"; + let ubiquityFormulas: UbiquityFormulas; + + const mineBlock = async (timestamp: number): Promise => { + await network.provider.request({ + method: "evm_mine", + params: [timestamp], + }); + }; + + const mineNBlock = async ( + blockCount: number, + secondsBetweenBlock?: number + ): Promise => { + const blockBefore = await ethers.provider.getBlock("latest"); + const maxMinedBlockPerBatch = 500000; + let blockToMine = blockCount; + let blockTime = blockBefore.timestamp; + while (blockToMine > maxMinedBlockPerBatch) { + // eslint-disable-next-line @typescript-eslint/no-loop-func + const minings = [...Array(maxMinedBlockPerBatch).keys()].map( + (_v, i) => { + const newTs = blockTime + i + (secondsBetweenBlock || 1); + return mineBlock(newTs); + } + ); + // eslint-disable-next-line no-await-in-loop + await Promise.all(minings); + blockToMine -= maxMinedBlockPerBatch; + blockTime = + blockTime + + maxMinedBlockPerBatch - + 1 + + maxMinedBlockPerBatch * (secondsBetweenBlock || 1); + } + const minings = [...Array(blockToMine).keys()].map((_v, i) => { + const newTs = blockTime + i + (secondsBetweenBlock || 1); + return mineBlock(newTs); + }); + // eslint-disable-next-line no-await-in-loop + await Promise.all(minings); + }; + + const resetFork = async (blockNumber: number): Promise => { + await network.provider.request({ + method: "hardhat_reset", + params: [ + { + forking: { + jsonRpcUrl: `https://eth-mainnet.alchemyapi.io/v2/${ + process.env.ALCHEMY_API_KEY || "" + }`, + blockNumber, + }, + }, + ], + }); + }; + + const newMasterChefV2 = async (): Promise => { + const newChefV2: MasterChefV2 = (await ethers.getContractAt( + "MasterChefV2", + "0xdae807071b5AC7B6a2a343beaD19929426dBC998" + )) as MasterChefV2; + + await manager.connect(admin).setMasterChefAddress(newChefV2.address); + await manager.connect(admin).grantRole(UBQ_MINTER_ROLE, adminAddress); + + return newChefV2; + }; + + const init = async (block: number): Promise => { + await resetFork(block); + await network.provider.request({ + method: "hardhat_impersonateAccount", + params: [adminAddress], + }); + + // set up admin, manager, bondingShare and masterChef + admin = ethers.provider.getSigner(adminAddress); + + manager = (await ethers.getContractAt( + "UbiquityAlgorithmicDollarManager", + UbiquityAlgorithmicDollarManagerAddress + )) as UbiquityAlgorithmicDollarManager; + + ubiquityFormulas = (await ethers.getContractAt( + "UbiquityFormulas", + UbiquityFormulasAddress + )) as UbiquityFormulas; + + bondingShareV2 = (await ethers.getContractAt( + "BondingShareV2", + BondingShareV2Address + )) as BondingShareV2; + + masterChefV2 = await newMasterChefV2(); + + bondingV2 = (await ethers.getContractAt( + "BondingV2", + BondingV2Address + )) as BondingV2; + }; + + const allResults: { + address: string; + bondId: number; + currentNumberOfShares: string; + currentLpRewardDebt: string; + lastRewardBlock: string; + block: number; + bondExpirationBlock: number; + numberOfSharesToCompensate: string; + }[] = []; + + const query = async ( + bondId: number, + log = false + ): Promise< + [ + BigNumber, + BigNumber, + BigNumber, + BigNumber, + BigNumber, + BigNumber, + BigNumber, + BigNumber, + BigNumber, + number, + number + ] + > => { + const block = await ethers.provider.getBlockNumber(); + const uGOVmultiplier = await masterChefV2.uGOVmultiplier(); + const totalShares = await masterChefV2.totalShares(); + const [lastRewardBlock, accuGOVPerShare] = await masterChefV2.pool(); + const totalSupply = await bondingShareV2.totalSupply(); + const totalLP = await bondingShareV2.totalLP(); + + const pendingUGOV = await masterChefV2.pendingUGOV(bondId); + const [amount, rewardDebt] = await masterChefV2.getBondingShareInfo( + bondId + ); + const bond = await bondingShareV2.getBond(bondId); + const bondExpirationBlock = bond[4]; + + if (log) { + if (bondId) { + console.log(`BOND:${bondId}`); + console.log(`BLOCK:${block}`); + console.log("Bond details", bond.toString()); + console.log("uAD3CRV-f staked", ethers.utils.formatEther(bond[1])); + console.log( + "BondingShare info", + amount.toString(), + rewardDebt.toString() + ); + + // verify that bond contains the same amount of LP tokens staked as shares reported by BondingShareInfo + expect(bond[1], "stake already removed").to.be.equal(amount); + // check expected staked value + expect(bond[1]).to.be.equal(lpTokenLockedAmounts[bondId - 1]); + } + console.log( + "uGOVmultiplier", + uGOVmultiplier.toString(), + ethers.utils.formatEther(uGOVmultiplier) + ); + console.log("lastRewardBlock", lastRewardBlock.toString()); + console.log( + "accuGOVPerShare", + ethers.utils.formatUnits(accuGOVPerShare.toString(), 12) + ); + console.log("Total number of bonds created", totalSupply.toString()); + console.log( + "total LP staked", + ethers.utils.formatEther(totalLP.toString()) + ); + } + return [ + totalShares, + accuGOVPerShare, + pendingUGOV, + amount, + rewardDebt, + totalSupply, + totalLP, + uGOVmultiplier, + lastRewardBlock, + block, + bondExpirationBlock.toNumber(), + ]; + }; + + const applyMultiplier = async (_address: string, bondId: number) => { + console.log( + `\n>> Address ${_address} is the bond holder of bond ${bondId}` + ); + + const whaleAdress = "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2"; + await network.provider.request({ + method: "hardhat_impersonateAccount", + params: [_address], + }); + await network.provider.request({ + method: "hardhat_impersonateAccount", + params: [whaleAdress], + }); + + const whale = ethers.provider.getSigner(whaleAdress); + + const bondHolder = ethers.provider.getSigner(_address); + + await whale.sendTransaction({ + to: _address, + value: BigNumber.from(10).pow(18).mul(10), + }); + + try { + const res = await query(bondId, true); + + // if (true) return; + const currentNumberOfShares = res[3]; + const currentLpRewardDebt = res[4]; + const lastRewardBlock = res[8].toString(); + const block = res[9]; + const bondExpirationBlock = res[10]; + + console.log( + `== Block ${block} Last Reward Block ${lastRewardBlock} Bond expiration block ${bondExpirationBlock}` + ); + // updating bond + + const correctNumberOfShares: BigNumber = + await ubiquityFormulas.durationMultiply( + BigNumber.from(lpTokenLockedAmounts[bondId - 1]), + BigNumber.from(lpTokenLockedweeks[bondId - 1]), + BigNumber.from("1000000000000000") + ); + + const numberOfSharesToCompensate = correctNumberOfShares.sub( + currentNumberOfShares + ); + + console.log( + "Current number of shares deposited in MasterChefV21 for this bond:", + currentNumberOfShares.toString() + ); + console.log( + "Number of shares that should have been deposited:", + correctNumberOfShares.toString() + ); + console.log( + "Number of shares to compensate:", + numberOfSharesToCompensate.toString() + ); + + console.log( + "Current LP reward debt", + currentLpRewardDebt.toString(), + ethers.utils.formatEther(currentLpRewardDebt) + ); + + // compensate the lpReward based on numberOfSharesToCompensate + const correctMultiplier: BigNumber = + await ubiquityFormulas.durationMultiply( + BigNumber.from("1000000000000000000"), + BigNumber.from(lpTokenLockedweeks[bondId - 1]), + BigNumber.from("1000000000000000") + ); + + console.log( + "Correct multiplier", + correctMultiplier.toString(), + ethers.utils.formatEther(correctMultiplier) + ); + + // admin corrects the bond by updating lpRewards to compensate + // all other parameters of the bond must remain untouched + const lpRewardToCompensate = currentLpRewardDebt + .mul(correctMultiplier) + .div("1000000000000000000") + .sub(currentLpRewardDebt); + + console.log( + "LP reward to compensate", + lpRewardToCompensate.toString(), + ethers.utils.formatEther(lpRewardToCompensate) + ); + + // Create a JSON object with the results for this iteration + const resultJSON = { + address: _address, + bondId, + currentNumberOfShares: currentNumberOfShares.toString(), + currentLpRewardDebt: currentLpRewardDebt.toString(), + lastRewardBlock, + block, + bondExpirationBlock, + numberOfSharesToCompensate: numberOfSharesToCompensate.toString(), + }; + + // Push the result JSON object to the allResults array + allResults.push(resultJSON); + + /* + await bondingShareV2 + .connect(admin) + .updateBond( + bondId, + res[3], + lpRewardToCompensate, + bondExpirationBlock + ); + */ + + // updated bond details + const bond = await bondingShareV2.getBond(bondId); + console.log("Updated bond details", bond.toString()); + + // get rewards + // await masterChefV2.connect(bondHolder).getRewards(bondId); + } catch (e) { + console.log(`** ERROR ${(e as Error).message}`); + } + }; + + await init(lastBlock); + + // for (let j = lastBlock + 1; j < lastBlock + 5000000; j += 10000) { + if (paramAddress && paramId) { + // eslint-disable-next-line no-await-in-loop + await applyMultiplier(paramAddress, paramId); + } else { + for (let i = 0; i < bondHolders.length; i += 1) { + // eslint-disable-next-line no-await-in-loop + await applyMultiplier(bondHolders[i], ids[i]); + } + } + // eslint-disable-next-line no-await-in-loop + // await resetFork(j); + // } + + console.log(JSON.stringify(allResults)); + + // Write allResults JSON data to a file + fs.writeFileSync("allResults.json", JSON.stringify(allResults)); + } + );