Contract Overview
Balance:
0.0000638944 MATIC
My Name Tag:
Not Available
[ Download CSV Export ]
Latest 25 internal transaction
[ Download CSV Export ]
Contract Name:
PaymentSplitter
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at PolygonScan.com on 2023-01-27 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File @openzeppelin/contracts/token/ERC20/utils/[email protected] // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File src/finance/PaymentSplitter.sol // OpenZeppelin Contracts (last updated v4.8.0) (finance/PaymentSplitter.sol) pragma solidity ^0.8.0; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. The distribution of shares is set at the * time of contract deployment and can't be updated thereafter. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. * * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you * to run tests before sending real value to this contract. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; mapping(IERC20 => uint256) private _erc20TotalReleased; mapping(IERC20 => mapping(address => uint256)) private _erc20Released; ///////////////// START modified for large group of payees /////////////////////// address private _tempAdmin; /** * @dev Creates an instance of `PaymentSplitter` * Set temp admin */ constructor() payable { _tempAdmin = msg.sender; } function dropTempAdmin() external { require(msg.sender == _tempAdmin, "PaymentSplitter: only temp admin"); _tempAdmin = address(0); } /** * @dev Each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ function addPayees(address[] calldata payees, uint256[] calldata shares_) external { require(msg.sender == _tempAdmin, "PaymentSplitter: only temp admin"); require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } ///////////////// END modified for large group of payees /////////////////////// /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20 * contract. */ function totalReleased(IERC20 token) public view returns (uint256) { return _erc20TotalReleased[token]; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an * IERC20 contract. */ function released(IERC20 token, address account) public view returns (uint256) { return _erc20Released[token][account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Getter for the amount of payee's releasable Ether. */ function releasable(address account) public view returns (uint256) { uint256 totalReceived = address(this).balance + totalReleased(); return _pendingPayment(account, totalReceived, released(account)); } /** * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an * IERC20 contract. */ function releasable(IERC20 token, address account) public view returns (uint256) { uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token); return _pendingPayment(account, totalReceived, released(token, account)); } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 payment = releasable(account); require(payment != 0, "PaymentSplitter: account is not due payment"); // _totalReleased is the sum of all values in _released. // If "_totalReleased += payment" does not overflow, then "_released[account] += payment" cannot overflow. _totalReleased += payment; unchecked { _released[account] += payment; } Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20 * contract. */ function release(IERC20 token, address account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 payment = releasable(token, account); require(payment != 0, "PaymentSplitter: account is not due payment"); // _erc20TotalReleased[token] is the sum of all values in _erc20Released[token]. // If "_erc20TotalReleased[token] += payment" does not overflow, then "_erc20Released[token][account] += payment" // cannot overflow. _erc20TotalReleased[token] += payment; unchecked { _erc20Released[token][account] += payment; } SafeERC20.safeTransfer(token, account, payment); emit ERC20PaymentReleased(token, account, payment); } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } }
[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"inputs":[{"internalType":"address[]","name":"payees","type":"address[]"},{"internalType":"uint256[]","name":"shares_","type":"uint256[]"}],"name":"addPayees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dropTempAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600780546001600160a01b031916331790556116a8806100256000396000f3fe6080604052600436106100d65760003560e01c80638b83209b1161007f578063c45ac05011610059578063c45ac050146102c7578063ce7c2ac2146102e7578063d79779b21461032a578063e33b7de31461036d57600080fd5b80638b83209b1461021f5780639852595c14610264578063a3f8eace146102a757600080fd5b8063466f087f116100b0578063466f087f146101ca57806348b75044146101df57806353844552146101ff57600080fd5b806319165587146101315780633a98ef3914610153578063406072a91461017757600080fd5b3661012c577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b34801561013d57600080fd5b5061015161014c366004611336565b610382565b005b34801561015f57600080fd5b506000545b6040519081526020015b60405180910390f35b34801561018357600080fd5b50610164610192366004611353565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205490565b3480156101d657600080fd5b50610151610576565b3480156101eb57600080fd5b506101516101fa366004611353565b610621565b34801561020b57600080fd5b5061015161021a3660046113d8565b610846565b34801561022b57600080fd5b5061023f61023a366004611444565b610a29565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161016e565b34801561027057600080fd5b5061016461027f366004611336565b73ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b3480156102b357600080fd5b506101646102c2366004611336565b610a66565b3480156102d357600080fd5b506101646102e2366004611353565b610abb565b3480156102f357600080fd5b50610164610302366004611336565b73ffffffffffffffffffffffffffffffffffffffff1660009081526002602052604090205490565b34801561033657600080fd5b50610164610345366004611336565b73ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205490565b34801561037957600080fd5b50600154610164565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260026020526040902054610439576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f736861726573000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b600061044482610a66565b9050806000036104d6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610430565b80600160008282546104e8919061148c565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604090208054820190556105228282610bc6565b6040805173ffffffffffffffffffffffffffffffffffffffff84168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05691015b60405180910390a15050565b60075473ffffffffffffffffffffffffffffffffffffffff1633146105f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f5061796d656e7453706c69747465723a206f6e6c792074656d702061646d696e6044820152606401610430565b600780547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600260205260409020546106d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610430565b60006106df8383610abb565b905080600003610771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610430565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260056020526040812080548392906107a690849061148c565b909155505073ffffffffffffffffffffffffffffffffffffffff80841660009081526006602090815260408083209386168352929052208054820190556107ee838383610d25565b6040805173ffffffffffffffffffffffffffffffffffffffff8481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b60075473ffffffffffffffffffffffffffffffffffffffff1633146108c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f5061796d656e7453706c69747465723a206f6e6c792074656d702061646d696e6044820152606401610430565b828114610956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e64207368617260448201527f6573206c656e677468206d69736d6174636800000000000000000000000000006064820152608401610430565b826109bd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f207061796565730000000000006044820152606401610430565b60005b83811015610a2257610a108585838181106109dd576109dd6114a4565b90506020020160208101906109f29190611336565b848484818110610a0457610a046114a4565b90506020020135610db2565b80610a1a816114d3565b9150506109c0565b5050505050565b600060048281548110610a3e57610a3e6114a4565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b600080610a7260015490565b610a7c904761148c565b9050610ab48382610aaf8673ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b61104c565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526005602052604081205481906040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff8616906370a0823190602401602060405180830381865afa158015610b4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b71919061150b565b610b7b919061148c565b73ffffffffffffffffffffffffffffffffffffffff808616600090815260066020908152604080832093881683529290522054909150610bbe908490839061104c565b949350505050565b80471015610c30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610430565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114610c8a576040519150601f19603f3d011682016040523d82523d6000602084013e610c8f565b606091505b5050905080610d20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610430565b505050565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610d20908490611094565b73ffffffffffffffffffffffffffffffffffffffff8216610e55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201527f7a65726f206164647265737300000000000000000000000000000000000000006064820152608401610430565b60008111610ebf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f5061796d656e7453706c69747465723a207368617265732061726520300000006044820152606401610430565b73ffffffffffffffffffffffffffffffffffffffff821660009081526002602052604090205415610f72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201527f20686173207368617265730000000000000000000000000000000000000000006064820152608401610430565b60048054600181019091557f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8416908117909155600090815260026020526040812082905554610ffd90829061148c565b6000556040805173ffffffffffffffffffffffffffffffffffffffff84168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910161056a565b6000805473ffffffffffffffffffffffffffffffffffffffff85168252600260205260408220548391906110809086611524565b61108a9190611561565b610bbe919061159c565b60006110f6826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166111a09092919063ffffffff16565b805190915015610d20578080602001905181019061111491906115b3565b610d20576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610430565b6060610bbe8484600085856000808673ffffffffffffffffffffffffffffffffffffffff1685876040516111d49190611605565b60006040518083038185875af1925050503d8060008114611211576040519150601f19603f3d011682016040523d82523d6000602084013e611216565b606091505b509150915061122787838387611232565b979650505050505050565b606083156112c85782516000036112c15773ffffffffffffffffffffffffffffffffffffffff85163b6112c1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610430565b5081610bbe565b610bbe83838151156112dd5781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104309190611621565b73ffffffffffffffffffffffffffffffffffffffff8116811461133357600080fd5b50565b60006020828403121561134857600080fd5b8135610ab481611311565b6000806040838503121561136657600080fd5b823561137181611311565b9150602083013561138181611311565b809150509250929050565b60008083601f84011261139e57600080fd5b50813567ffffffffffffffff8111156113b657600080fd5b6020830191508360208260051b85010111156113d157600080fd5b9250929050565b600080600080604085870312156113ee57600080fd5b843567ffffffffffffffff8082111561140657600080fd5b6114128883890161138c565b9096509450602087013591508082111561142b57600080fd5b506114388782880161138c565b95989497509550505050565b60006020828403121561145657600080fd5b5035919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000821982111561149f5761149f61145d565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036115045761150461145d565b5060010190565b60006020828403121561151d57600080fd5b5051919050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561155c5761155c61145d565b500290565b600082611597577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000828210156115ae576115ae61145d565b500390565b6000602082840312156115c557600080fd5b81518015158114610ab457600080fd5b60005b838110156115f05781810151838201526020016115d8565b838111156115ff576000848401525b50505050565b600082516116178184602087016115d5565b9190910192915050565b60208152600082518060208401526116408160408501602087016115d5565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea26469706673582212209093dda0e8f8ba00150a95ff56377262d603093cc4a4b76236685828959e87bc64736f6c634300080e0033
Deployed ByteCode Sourcemap
21470:7873:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23997:40;10170:10;23997:40;;;218:42:1;206:55;;;188:74;;24027:9:0;293:2:1;278:18;;271:34;161:18;23997:40:0;;;;;;;21470:7873;;;;;26518:671;;;;;;;;;;-1:-1:-1;26518:671:0;;;;;:::i;:::-;;:::i;:::-;;24128:91;;;;;;;;;;-1:-1:-1;24172:7:0;24199:12;24128:91;;;897:25:1;;;885:2;870:18;24128:91:0;;;;;;;;25257:135;;;;;;;;;;-1:-1:-1;25257:135:0;;;;;:::i;:::-;25354:21;;;;25327:7;25354:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;25257:135;22407:156;;;;;;;;;;;;;:::i;27457:792::-;;;;;;;;;;-1:-1:-1;27457:792:0;;;;;:::i;:::-;;:::i;22877:458::-;;;;;;;;;;-1:-1:-1;22877:458:0;;;;;:::i;:::-;;:::i;25483:100::-;;;;;;;;;;-1:-1:-1;25483:100:0;;;;;:::i;:::-;;:::i;:::-;;;2867:42:1;2855:55;;;2837:74;;2825:2;2810:18;25483:100:0;2691:226:1;24979:109:0;;;;;;;;;;-1:-1:-1;24979:109:0;;;;;:::i;:::-;25062:18;;25035:7;25062:18;;;:9;:18;;;;;;;24979:109;25673:225;;;;;;;;;;-1:-1:-1;25673:225:0;;;;;:::i;:::-;;:::i;26058:260::-;;;;;;;;;;-1:-1:-1;26058:260:0;;;;;:::i;:::-;;:::i;24775:105::-;;;;;;;;;;-1:-1:-1;24775:105:0;;;;;:::i;:::-;24856:16;;24829:7;24856:16;;;:7;:16;;;;;;;24775:105;24565:119;;;;;;;;;;-1:-1:-1;24565:119:0;;;;;:::i;:::-;24650:26;;24623:7;24650:26;;;:19;:26;;;;;;;24565:119;24313:95;;;;;;;;;;-1:-1:-1;24386:14:0;;24313:95;;26518:671;26594:16;;;26613:1;26594:16;;;:7;:16;;;;;;26586:71;;;;;;;3658:2:1;26586:71:0;;;3640:21:1;3697:2;3677:18;;;3670:30;3736:34;3716:18;;;3709:62;3807:8;3787:18;;;3780:36;3833:19;;26586:71:0;;;;;;;;;26670:15;26688:19;26699:7;26688:10;:19::i;:::-;26670:37;;26728:7;26739:1;26728:12;26720:68;;;;;;;4065:2:1;26720:68:0;;;4047:21:1;4104:2;4084:18;;;4077:30;4143:34;4123:18;;;4116:62;4214:13;4194:18;;;4187:41;4245:19;;26720:68:0;3863:407:1;26720:68:0;27001:7;26983:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;27044:18:0;;;;;;;:9;:18;;;;;:29;;;;;;27097:35;27054:7;27066;27097:17;:35::i;:::-;27148:33;;;218:42:1;206:55;;188:74;;293:2;278:18;;271:34;;;27148:33:0;;161:18:1;27148:33:0;;;;;;;;26575:614;26518:671;:::o;22407:156::-;22474:10;;;;22460;:24;22452:69;;;;;;;5109:2:1;22452:69:0;;;5091:21:1;;;5128:18;;;5121:30;5187:34;5167:18;;;5160:62;5239:18;;22452:69:0;4907:356:1;22452:69:0;22532:10;:23;;;;;;22407:156::o;27457:792::-;27539:16;;;27558:1;27539:16;;;:7;:16;;;;;;27531:71;;;;;;;3658:2:1;27531:71:0;;;3640:21:1;3697:2;3677:18;;;3670:30;3736:34;3716:18;;;3709:62;3807:8;3787:18;;;3780:36;3833:19;;27531:71:0;3456:402:1;27531:71:0;27615:15;27633:26;27644:5;27651:7;27633:10;:26::i;:::-;27615:44;;27680:7;27691:1;27680:12;27672:68;;;;;;;4065:2:1;27672:68:0;;;4047:21:1;4104:2;4084:18;;;4077:30;4143:34;4123:18;;;4116:62;4214:13;4194:18;;;4187:41;4245:19;;27672:68:0;3863:407:1;27672:68:0;27995:26;;;;;;;:19;:26;;;;;:37;;28025:7;;27995:26;:37;;28025:7;;27995:37;:::i;:::-;;;;-1:-1:-1;;28068:21:0;;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;:41;;;;;;28133:47;28083:5;28090:7;28102;28133:22;:47::i;:::-;28196:45;;;;206:55:1;;;188:74;;293:2;278:18;;271:34;;;28196:45:0;;;;;161:18:1;28196:45:0;;;;;;;27520:729;27457:792;;:::o;22877:458::-;22993:10;;;;22979;:24;22971:69;;;;;;;5109:2:1;22971:69:0;;;5091:21:1;;;5128:18;;;5121:30;5187:34;5167:18;;;5160:62;5239:18;;22971:69:0;4907:356:1;22971:69:0;23059:31;;;23051:94;;;;;;;5470:2:1;23051:94:0;;;5452:21:1;5509:2;5489:18;;;5482:30;5548:34;5528:18;;;5521:62;5619:20;5599:18;;;5592:48;5657:19;;23051:94:0;5268:414:1;23051:94:0;23164:17;23156:56;;;;;;;5889:2:1;23156:56:0;;;5871:21:1;5928:2;5908:18;;;5901:30;5967:28;5947:18;;;5940:56;6013:18;;23156:56:0;5687:350:1;23156:56:0;23230:9;23225:103;23245:17;;;23225:103;;;23284:32;23294:6;;23301:1;23294:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;23305:7;;23313:1;23305:10;;;;;;;:::i;:::-;;;;;;;23284:9;:32::i;:::-;23264:3;;;;:::i;:::-;;;;23225:103;;;;22877:458;;;;:::o;25483:100::-;25534:7;25561;25569:5;25561:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;25483:100;-1:-1:-1;;25483:100:0:o;25673:225::-;25731:7;25751:21;25799:15;24386:14;;;24313:95;25799:15;25775:39;;:21;:39;:::i;:::-;25751:63;;25832:58;25848:7;25857:13;25872:17;25881:7;25062:18;;25035:7;25062:18;;;:9;:18;;;;;;;24979:109;25872:17;25832:15;:58::i;:::-;25825:65;25673:225;-1:-1:-1;;;25673:225:0:o;26058:260::-;24650:26;;;26130:7;24650:26;;;:19;:26;;;;;;26130:7;;26174:30;;;;;26198:4;26174:30;;;2837:74:1;26174:15:0;;;;;;2810:18:1;;26174:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;25354:21;;;;25327:7;25354:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;26150:77;;-1:-1:-1;26245:65:0;;26261:7;;26150:77;;25832:15;:58::i;26245:65::-;26238:72;26058:260;-1:-1:-1;;;;26058:260:0:o;2471:317::-;2586:6;2561:21;:31;;2553:73;;;;;;;6822:2:1;2553:73:0;;;6804:21:1;6861:2;6841:18;;;6834:30;6900:31;6880:18;;;6873:59;6949:18;;2553:73:0;6620:353:1;2553:73:0;2640:12;2658:9;:14;;2680:6;2658:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2639:52;;;2710:7;2702:78;;;;;;;7390:2:1;2702:78:0;;;7372:21:1;7429:2;7409:18;;;7402:30;7468:34;7448:18;;;7441:62;7539:28;7519:18;;;7512:56;7585:19;;2702:78:0;7188:422:1;2702:78:0;2542:246;2471:317;;:::o;16278:211::-;16422:58;;;218:42:1;206:55;;16422:58:0;;;188:74:1;278:18;;;;271:34;;;16422:58:0;;;;;;;;;;161:18:1;;;;16422:58:0;;;;;;;;;;16445:23;16422:58;;;16395:86;;16415:5;;16395:19;:86::i;28867:473::-;28947:21;;;28939:78;;;;;;;7817:2:1;28939:78:0;;;7799:21:1;7856:2;7836:18;;;7829:30;7895:34;7875:18;;;7868:62;7966:14;7946:18;;;7939:42;7998:19;;28939:78:0;7615:408:1;28939:78:0;29046:1;29036:7;:11;29028:53;;;;;;;8230:2:1;29028:53:0;;;8212:21:1;8269:2;8249:18;;;8242:30;8308:31;8288:18;;;8281:59;8357:18;;29028:53:0;8028:353:1;29028:53:0;29100:16;;;;;;;:7;:16;;;;;;:21;29092:77;;;;;;;8588:2:1;29092:77:0;;;8570:21:1;8627:2;8607:18;;;8600:30;8666:34;8646:18;;;8639:62;8737:13;8717:18;;;8710:41;8768:19;;29092:77:0;8386:407:1;29092:77:0;29182:7;:21;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29214:16:0;;;:7;29182:21;29214:16;;;;:26;;;29266:12;:22;;29214:26;;29266:22;:::i;:::-;29251:12;:37;29304:28;;;218:42:1;206:55;;188:74;;293:2;278:18;;271:34;;;29304:28:0;;161:18:1;29304:28:0;14:297:1;28427:248:0;28573:7;28637:12;;28617:16;;;;;:7;:16;;;;;;28652:15;;28637:12;28601:32;;:13;:32;:::i;:::-;28600:49;;;;:::i;:::-;:67;;;;:::i;19345:716::-;19769:23;19795:69;19823:4;19795:69;;;;;;;;;;;;;;;;;19803:5;19795:27;;;;:69;;;;;:::i;:::-;19879:17;;19769:95;;-1:-1:-1;19879:21:0;19875:179;;19976:10;19965:30;;;;;;;;;;;;:::i;:::-;19957:85;;;;;;;9924:2:1;19957:85:0;;;9906:21:1;9963:2;9943:18;;;9936:30;10002:34;9982:18;;;9975:62;10073:12;10053:18;;;10046:40;10103:19;;19957:85:0;9722:406:1;3967:229:0;4104:12;4136:52;4158:6;4166:4;4172:1;4175:12;4104;5375;5389:23;5416:6;:11;;5435:5;5442:4;5416:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5374:73;;;;5465:69;5492:6;5500:7;5509:10;5521:12;5465:26;:69::i;:::-;5458:76;5087:455;-1:-1:-1;;;;;;;5087:455:0:o;7660:644::-;7845:12;7874:7;7870:427;;;7902:10;:17;7923:1;7902:22;7898:290;;1505:19;;;;8112:60;;;;;;;11284:2:1;8112:60:0;;;11266:21:1;11323:2;11303:18;;;11296:30;11362:31;11342:18;;;11335:59;11411:18;;8112:60:0;11082:353:1;8112:60:0;-1:-1:-1;8209:10:0;8202:17;;7870:427;8252:33;8260:10;8272:12;9007:17;;:21;9003:388;;9239:10;9233:17;9296:15;9283:10;9279:2;9275:19;9268:44;9003:388;9366:12;9359:20;;;;;;;;;;;:::i;316:162:1:-;410:42;403:5;399:54;392:5;389:65;379:93;;468:1;465;458:12;379:93;316:162;:::o;483:263::-;550:6;603:2;591:9;582:7;578:23;574:32;571:52;;;619:1;616;609:12;571:52;658:9;645:23;677:39;710:5;677:39;:::i;933:418::-;1015:6;1023;1076:2;1064:9;1055:7;1051:23;1047:32;1044:52;;;1092:1;1089;1082:12;1044:52;1131:9;1118:23;1150:39;1183:5;1150:39;:::i;:::-;1208:5;-1:-1:-1;1265:2:1;1250:18;;1237:32;1278:41;1237:32;1278:41;:::i;:::-;1338:7;1328:17;;;933:418;;;;;:::o;1356:367::-;1419:8;1429:6;1483:3;1476:4;1468:6;1464:17;1460:27;1450:55;;1501:1;1498;1491:12;1450:55;-1:-1:-1;1524:20:1;;1567:18;1556:30;;1553:50;;;1599:1;1596;1589:12;1553:50;1636:4;1628:6;1624:17;1612:29;;1696:3;1689:4;1679:6;1676:1;1672:14;1664:6;1660:27;1656:38;1653:47;1650:67;;;1713:1;1710;1703:12;1650:67;1356:367;;;;;:::o;1728:773::-;1850:6;1858;1866;1874;1927:2;1915:9;1906:7;1902:23;1898:32;1895:52;;;1943:1;1940;1933:12;1895:52;1983:9;1970:23;2012:18;2053:2;2045:6;2042:14;2039:34;;;2069:1;2066;2059:12;2039:34;2108:70;2170:7;2161:6;2150:9;2146:22;2108:70;:::i;:::-;2197:8;;-1:-1:-1;2082:96:1;-1:-1:-1;2285:2:1;2270:18;;2257:32;;-1:-1:-1;2301:16:1;;;2298:36;;;2330:1;2327;2320:12;2298:36;;2369:72;2433:7;2422:8;2411:9;2407:24;2369:72;:::i;:::-;1728:773;;;;-1:-1:-1;2460:8:1;-1:-1:-1;;;;1728:773:1:o;2506:180::-;2565:6;2618:2;2606:9;2597:7;2593:23;2589:32;2586:52;;;2634:1;2631;2624:12;2586:52;-1:-1:-1;2657:23:1;;2506:180;-1:-1:-1;2506:180:1:o;4275:184::-;4327:77;4324:1;4317:88;4424:4;4421:1;4414:15;4448:4;4445:1;4438:15;4464:128;4504:3;4535:1;4531:6;4528:1;4525:13;4522:39;;;4541:18;;:::i;:::-;-1:-1:-1;4577:9:1;;4464:128::o;6042:184::-;6094:77;6091:1;6084:88;6191:4;6188:1;6181:15;6215:4;6212:1;6205:15;6231:195;6270:3;6301:66;6294:5;6291:77;6288:103;;6371:18;;:::i;:::-;-1:-1:-1;6418:1:1;6407:13;;6231:195::o;6431:184::-;6501:6;6554:2;6542:9;6533:7;6529:23;6525:32;6522:52;;;6570:1;6567;6560:12;6522:52;-1:-1:-1;6593:16:1;;6431:184;-1:-1:-1;6431:184:1:o;8798:228::-;8838:7;8964:1;8896:66;8892:74;8889:1;8886:81;8881:1;8874:9;8867:17;8863:105;8860:131;;;8971:18;;:::i;:::-;-1:-1:-1;9011:9:1;;8798:228::o;9031:274::-;9071:1;9097;9087:189;;9132:77;9129:1;9122:88;9233:4;9230:1;9223:15;9261:4;9258:1;9251:15;9087:189;-1:-1:-1;9290:9:1;;9031:274::o;9310:125::-;9350:4;9378:1;9375;9372:8;9369:34;;;9383:18;;:::i;:::-;-1:-1:-1;9420:9:1;;9310:125::o;9440:277::-;9507:6;9560:2;9548:9;9539:7;9535:23;9531:32;9528:52;;;9576:1;9573;9566:12;9528:52;9608:9;9602:16;9661:5;9654:13;9647:21;9640:5;9637:32;9627:60;;9683:1;9680;9673:12;10540:258;10612:1;10622:113;10636:6;10633:1;10630:13;10622:113;;;10712:11;;;10706:18;10693:11;;;10686:39;10658:2;10651:10;10622:113;;;10753:6;10750:1;10747:13;10744:48;;;10788:1;10779:6;10774:3;10770:16;10763:27;10744:48;;10540:258;;;:::o;10803:274::-;10932:3;10970:6;10964:13;10986:53;11032:6;11027:3;11020:4;11012:6;11008:17;10986:53;:::i;:::-;11055:16;;;;;10803:274;-1:-1:-1;;10803:274:1:o;11440:442::-;11589:2;11578:9;11571:21;11552:4;11621:6;11615:13;11664:6;11659:2;11648:9;11644:18;11637:34;11680:66;11739:6;11734:2;11723:9;11719:18;11714:2;11706:6;11702:15;11680:66;:::i;:::-;11798:2;11786:15;11803:66;11782:88;11767:104;;;;11873:2;11763:113;;11440:442;-1:-1:-1;;11440:442:1:o
Swarm Source
ipfs://9093dda0e8f8ba00150a95ff56377262d603093cc4a4b76236685828959e87bc
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|