More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 689 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim Tokens | 19217145 | 349 days ago | IN | 0 ETH | 0.0015624 | ||||
Claim Tokens | 18418270 | 461 days ago | IN | 0 ETH | 0.00137805 | ||||
Claim Tokens | 18356910 | 470 days ago | IN | 0 ETH | 0.00074489 | ||||
Claim Tokens | 18323377 | 474 days ago | IN | 0 ETH | 0.00048592 | ||||
Claim Tokens | 17786391 | 549 days ago | IN | 0 ETH | 0.00327728 | ||||
Claim Tokens | 17705677 | 561 days ago | IN | 0 ETH | 0.001265 | ||||
Claim Tokens | 17705563 | 561 days ago | IN | 0 ETH | 0.00132467 | ||||
Claim Tokens | 17628794 | 572 days ago | IN | 0 ETH | 0.00425896 | ||||
Claim Tokens | 17316708 | 615 days ago | IN | 0 ETH | 0.00521539 | ||||
Claim Tokens | 16890481 | 676 days ago | IN | 0 ETH | 0.00142708 | ||||
Claim Tokens | 16882417 | 677 days ago | IN | 0 ETH | 0.00087025 | ||||
Claim Tokens | 16827181 | 685 days ago | IN | 0 ETH | 0.00225029 | ||||
Claim Tokens | 16797091 | 689 days ago | IN | 0 ETH | 0.00180485 | ||||
Claim Tokens | 16795172 | 689 days ago | IN | 0 ETH | 0.0017611 | ||||
Claim Tokens | 16795056 | 689 days ago | IN | 0 ETH | 0.0018603 | ||||
Claim Tokens | 16789608 | 690 days ago | IN | 0 ETH | 0.00176863 | ||||
Claim Tokens | 16786896 | 690 days ago | IN | 0 ETH | 0.00224342 | ||||
Claim Tokens | 16783689 | 691 days ago | IN | 0 ETH | 0.00133534 | ||||
Claim Tokens | 16782846 | 691 days ago | IN | 0 ETH | 0.00126541 | ||||
Claim Tokens | 16782514 | 691 days ago | IN | 0 ETH | 0.00158767 | ||||
Claim Tokens | 16782219 | 691 days ago | IN | 0 ETH | 0.00148716 | ||||
Claim Tokens | 16782082 | 691 days ago | IN | 0 ETH | 0.00125696 | ||||
Claim Tokens | 16781743 | 691 days ago | IN | 0 ETH | 0.00126086 | ||||
Claim Tokens | 16776711 | 692 days ago | IN | 0 ETH | 0.00202172 | ||||
Claim Tokens | 16776682 | 692 days ago | IN | 0 ETH | 0.0016044 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
PPTimedVesting
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-05-27 */ /* https://powerpool.finance/ wrrrw r wrr ppwr rrr wppr0 prwwwrp prwwwrp wr0 rr 0rrrwrrprpwp0 pp pr prrrr0 pp 0r prrrr0 0rwrrr pp pr prrrr0 prrrr0 r0 rrp pr wr00rrp prwww0 pp wr pp w00r prwwwpr 0rw prwww0 pp wr pp wr r0 r0rprprwrrrp pr0 pp wr pr pp rwwr wr 0r pp wr pr wr pr r0 prwr wrr0wpwr 00 www0 0w0ww www0 0w 00 www0 www0 0www0 wrr ww0rrrr */ // SPDX-License-Identifier: MIT // File: contracts/utils/SafeMath.sol // From // https://github.com/OpenZeppelin/openzeppelin-contracts/blob/ccf79ee483b12fb9759dc5bb5f947a31aa0a3bd6/contracts/math/SafeMath.sol pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity >=0.6.0 <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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/utils/SafeCast.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow * checks. * * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. * * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing * all math on `uint256` and `int256` and then downcasting. */ library SafeCast { /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits */ function toUint128(uint256 value) internal pure returns (uint128) { require(value < 2**128, "SafeCast: value doesn\'t fit in 128 bits"); return uint128(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits */ function toUint64(uint256 value) internal pure returns (uint64) { require(value < 2**64, "SafeCast: value doesn\'t fit in 64 bits"); return uint64(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits */ function toUint32(uint256 value) internal pure returns (uint32) { require(value < 2**32, "SafeCast: value doesn\'t fit in 32 bits"); return uint32(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits */ function toUint16(uint256 value) internal pure returns (uint16) { require(value < 2**16, "SafeCast: value doesn\'t fit in 16 bits"); return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits. */ function toUint8(uint256 value) internal pure returns (uint8) { require(value < 2**8, "SafeCast: value doesn\'t fit in 8 bits"); return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. */ function toUint256(int256 value) internal pure returns (uint256) { require(value >= 0, "SafeCast: value must be positive"); return uint256(value); } /** * @dev Returns the downcasted int128 from int256, reverting on * overflow (when the input is less than smallest int128 or * greater than largest int128). * * Counterpart to Solidity's `int128` operator. * * Requirements: * * - input must fit into 128 bits * * _Available since v3.1._ */ function toInt128(int256 value) internal pure returns (int128) { require(value >= -2**127 && value < 2**127, "SafeCast: value doesn\'t fit in 128 bits"); return int128(value); } /** * @dev Returns the downcasted int64 from int256, reverting on * overflow (when the input is less than smallest int64 or * greater than largest int64). * * Counterpart to Solidity's `int64` operator. * * Requirements: * * - input must fit into 64 bits * * _Available since v3.1._ */ function toInt64(int256 value) internal pure returns (int64) { require(value >= -2**63 && value < 2**63, "SafeCast: value doesn\'t fit in 64 bits"); return int64(value); } /** * @dev Returns the downcasted int32 from int256, reverting on * overflow (when the input is less than smallest int32 or * greater than largest int32). * * Counterpart to Solidity's `int32` operator. * * Requirements: * * - input must fit into 32 bits * * _Available since v3.1._ */ function toInt32(int256 value) internal pure returns (int32) { require(value >= -2**31 && value < 2**31, "SafeCast: value doesn\'t fit in 32 bits"); return int32(value); } /** * @dev Returns the downcasted int16 from int256, reverting on * overflow (when the input is less than smallest int16 or * greater than largest int16). * * Counterpart to Solidity's `int16` operator. * * Requirements: * * - input must fit into 16 bits * * _Available since v3.1._ */ function toInt16(int256 value) internal pure returns (int16) { require(value >= -2**15 && value < 2**15, "SafeCast: value doesn\'t fit in 16 bits"); return int16(value); } /** * @dev Returns the downcasted int8 from int256, reverting on * overflow (when the input is less than smallest int8 or * greater than largest int8). * * Counterpart to Solidity's `int8` operator. * * Requirements: * * - input must fit into 8 bits. * * _Available since v3.1._ */ function toInt8(int256 value) internal pure returns (int8) { require(value >= -2**7 && value < 2**7, "SafeCast: value doesn\'t fit in 8 bits"); return int8(value); } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. */ function toInt256(uint256 value) internal pure returns (int256) { require(value < 2**255, "SafeCast: value doesn't fit in an int256"); return int256(value); } } // File: contracts/PPTimedVesting.sol pragma solidity 0.6.12; interface IERC20 { function totalSupply() external view returns (uint256); function transfer(address _to, uint256 _amount) external returns (bool); } interface CvpInterface { function getPriorVotes(address account, uint256 blockNumber) external view returns (uint96); } /** * @title PowerPool Vesting Contract * @author PowerPool */ contract PPTimedVesting is CvpInterface, Ownable { using SafeMath for uint256; using SafeCast for uint256; // @notice Emitted when a member is disabled either by the owner or the by the member itself event DisableMember(address indexed member, uint256 tokensRemainder); // @notice Emitted once when the contract was deployed event Init(address[] members); // @notice Emitted when the owner increases durationT correspondingly increasing the endT timestamp event IncreaseDurationT(uint256 prevDurationT, uint256 prevEndT, uint256 newDurationT, uint256 newEndT); // @notice Emitted when the owner increases personalDurationT correspondingly increasing the personalEndT timestamp event IncreasePersonalDurationT( address indexed member, uint256 prevEvaluatedDurationT, uint256 prevEvaluatedEndT, uint256 prevPersonalDurationT, uint256 newPersonalDurationT, uint256 newPersonalEndT ); // @notice Emitted when a member delegates his votes to one of the delegates or to himself event DelegateVotes(address indexed from, address indexed to, address indexed previousDelegate, uint96 adjustedVotes); // @notice Emitted when a member transfer his permission event Transfer( address indexed from, address indexed to, uint96 alreadyClaimedVotes, uint96 alreadyClaimedTokens, address currentDelegate ); /// @notice Emitted when a member claims available votes event ClaimVotes( address indexed member, address indexed delegate, uint96 lastAlreadyClaimedVotes, uint96 lastAlreadyClaimedTokens, uint96 newAlreadyClaimedVotes, uint96 newAlreadyClaimedTokens, uint96 lastMemberAdjustedVotes, uint96 adjustedVotes, uint96 diff ); /// @notice Emitted when a member claims available tokens event ClaimTokens( address indexed member, address indexed to, uint96 amount, uint256 newAlreadyClaimed, uint256 votesAvailable ); /// @notice A Emitted when a member unclaimed balance changes event UnclaimedBalanceChanged(address indexed member, uint256 previousUnclaimed, uint256 newUnclaimed); /// @notice A member statuses and unclaimed balance tracker struct Member { bool active; bool transferred; uint32 personalDurationT; uint96 alreadyClaimedVotes; uint96 alreadyClaimedTokens; } /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint96 votes; } /// @notice ERC20 token address address public immutable token; /// @notice Start timestamp for vote vesting calculations uint256 public immutable startV; /// @notice Duration of the vote vesting in seconds uint256 public immutable durationV; /// @notice End vote vesting timestamp uint256 public immutable endV; /// @notice Start timestamp for token vesting calculations uint256 public immutable startT; /// @notice Number of the vesting contract members, used only from UI uint256 public memberCount; /// @notice Amount of ERC20 tokens to distribute during the vesting period uint96 public immutable amountPerMember; /// @notice Duration of the token vesting in seconds uint256 public durationT; /// @notice End token timestamp, used only from UI uint256 public endT; /// @notice Member details by their address mapping(address => Member) public members; /// @notice A record of vote checkpoints for each member, by index mapping(address => mapping(uint32 => Checkpoint)) public checkpoints; /// @notice The number of checkpoints for each member mapping(address => uint32) public numCheckpoints; /// @notice Vote delegations mapping(address => address) public voteDelegations; /** * @notice Constructs a new vesting contract * @dev It's up to a deployer to allocate the correct amount of ERC20 tokens on this contract * @param _tokenAddress The ERC20 token address to use with this vesting contract * @param _startV The timestamp when the vote vesting period starts * @param _durationV The duration in second the vote vesting period should last * @param _startT The timestamp when the token vesting period starts * @param _durationT The duration in seconds the token vesting period should last * @param _amountPerMember The number of tokens to distribute to each vesting contract member */ constructor( address _tokenAddress, uint256 _startV, uint256 _durationV, uint256 _startT, uint256 _durationT, uint96 _amountPerMember ) public { require(_durationV > 1, "Vesting: Invalid durationV"); require(_durationT > 1, "Vesting: Invalid durationT"); require(_startV < _startT, "Vesting: Requires startV < startT"); // require((_startV + _durationV) <= (_startT + _durationT), "Vesting: Requires endV <= endT"); require((_startV.add(_durationV)) <= (_startT.add(_durationT)), "Vesting: Requires endV <= endT"); require(_amountPerMember > 0, "Vesting: Invalid amount per member"); require(IERC20(_tokenAddress).totalSupply() > 0, "Vesting: Missing supply of the token"); token = _tokenAddress; startV = _startV; durationV = _durationV; endV = _startV + _durationV; startT = _startT; durationT = _durationT; endT = _startT + _durationT; amountPerMember = _amountPerMember; } /** * @notice Initialize members of vesting * @param _memberList The list of addresses to distribute tokens to */ function initializeMembers(address[] calldata _memberList) external onlyOwner { require(memberCount == 0, "Vesting: Already initialized"); uint256 len = _memberList.length; require(len > 0, "Vesting: Empty member list"); memberCount = len; for (uint256 i = 0; i < len; i++) { members[_memberList[i]].active = true; } emit Init(_memberList); } /** * @notice Checks whether the vote vesting period has started or not * @return true If the vote vesting period has started */ function hasVoteVestingStarted() external view returns (bool) { return block.timestamp >= startV; } /** * @notice Checks whether the vote vesting period has ended or not * @return true If the vote vesting period has ended */ function hasVoteVestingEnded() external view returns (bool) { return block.timestamp >= endV; } /** * @notice Checks whether the token vesting period has started or not * @return true If the token vesting period has started */ function hasTokenVestingStarted() external view returns (bool) { return block.timestamp >= startT; } /** * @notice Checks whether the token vesting period has ended or not * @return true If the token vesting period has ended */ function hasTokenVestingEnded() external view returns (bool) { return block.timestamp >= endT; } /** * @notice Returns the address a _voteHolder delegated their votes to * @param _voteHolder The address to fetch delegate for * @return address The delegate address */ function getVoteUser(address _voteHolder) public view returns (address) { address currentDelegate = voteDelegations[_voteHolder]; if (currentDelegate == address(0)) { return _voteHolder; } return currentDelegate; } /** * @notice Provides information about the last cached votes checkpoint with no other conditions * @dev Provides a latest cached votes value. For actual votes information use `getPriorVotes()` which introduce * some additional logic constraints on top of this cached value. * @param _member The member address to get votes for */ function getLastCachedVotes(address _member) external view returns (uint256) { uint32 dstRepNum = numCheckpoints[_member]; return dstRepNum > 0 ? checkpoints[_member][dstRepNum - 1].votes : 0; } /** * @notice Provides information about a member already claimed votes * @dev Behaves like a CVP delegated balance, but with a member unclaimed balance * @dev Block number must be a finalized block or else this function will revert to prevent misinformation * @dev Returns 0 for non-member addresses, even for previously valid ones * @dev This method is a copy from CVP token with several modifications * @param account The address of the member to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint256 blockNumber) external view override returns (uint96) { require(blockNumber < block.number, "Vesting::getPriorVotes: Not yet determined"); uint32 nCheckpoints = numCheckpoints[account]; Member memory member = members[account]; // Transferred member if (member.transferred == true) { return 0; } // (No one can use vesting votes left on the contract after endT, even for votings created before endT) if (block.timestamp > getLoadedMemberEndT(member) || block.timestamp > endT) { return 0; } // (A member has not claimed any tokens yet) OR (The blockNumber is before the first checkpoint) if (nCheckpoints == 0 || checkpoints[account][0].fromBlock > blockNumber) { return 0; } // Next check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } /*** Available to Claim calculation ***/ /** * @notice Returns available amount for a claim in the given timestamp * by the given member based on the current contract values * @param _atTimestamp The timestamp to calculate available balance for * @param _member The member address to return available balance for * @return The available amount for a claim in the provided timestamp */ function getAvailableTokensForMemberAt(uint256 _atTimestamp, address _member) external view returns (uint256) { Member memory member = members[_member]; if (member.active == false) { return 0; } return getAvailable( _atTimestamp, startT, amountPerMember, getLoadedMemberDurationT(member), member.alreadyClaimedTokens ); } /** * @notice Returns an evaluated endT value for the given member using * the member's personalDurationT if it set or the global endT otherwise. * @param _member The member address to return endT for * @return The evaluated endT value */ function getMemberEndT(address _member) external view returns (uint256) { return startT.add(getMemberDurationT(_member)); } /** * @notice Returns an evaluated durationT value for the given member using * the member's personalDurationT if it set or the global durationT otherwise. * @param _member The member address to return durationT for * @return The evaluated durationT value */ function getMemberDurationT(address _member) public view returns (uint256) { return getLoadedMemberDurationT(members[_member]); } function getLoadedMemberEndT(Member memory _member) internal view returns (uint256) { return startT.add(getLoadedMemberDurationT(_member)); } function getLoadedMemberDurationT(Member memory _member) internal view returns (uint256) { uint256 _personalDurationT = uint256(_member.personalDurationT); if (_personalDurationT == 0) { return durationT; } return _personalDurationT; } /** * @notice Returns available token amount for a claim by a given member in the current timestamp * based on the current contract values * @param _member The member address to return available balance for * @return The available amount for a claim in the current block */ function getAvailableTokensForMember(address _member) external view returns (uint256) { Member memory member = members[_member]; if (member.active == false) { return 0; } return getAvailableTokens(member.alreadyClaimedTokens, getLoadedMemberDurationT(member)); } /** * @notice Returns available vote amount for a claim by a given member at the moment * based on the current contract values * @param _member The member address to return available balance for * @return The available amount for a claim at the moment */ function getAvailableVotesForMember(address _member) external view returns (uint256) { Member storage member = members[_member]; if (member.active == false) { return 0; } return getAvailableVotes({ _alreadyClaimed: member.alreadyClaimedVotes, _memberEndT: getLoadedMemberEndT(member) }); } /** * @notice Returns available token amount for a claim based on the current contract values * and an already claimed amount input * @dev Will return amountPerMember for non-members, so an external check is required for this case * @param _alreadyClaimed amount * @param _durationT in seconds * @return The available amount for claim */ function getAvailableTokens(uint256 _alreadyClaimed, uint256 _durationT) public view returns (uint256) { return getAvailable(block.timestamp, startT, amountPerMember, _durationT, _alreadyClaimed); } /** * @notice Returns available vote amount for claim based on the current contract values * and an already claimed amount input * @dev Will return amountPerMember for non-members, so an external check is required for this case. * Will return 0 if global vesting is over. * @param _alreadyClaimed amount * @param _memberEndT either the global or a personal endT timestamp * @return The available amount for claim */ function getAvailableVotes(uint256 _alreadyClaimed, uint256 _memberEndT) public view returns (uint256) { if (block.timestamp > _memberEndT || block.timestamp > endT) { return 0; } return getAvailable(block.timestamp, startV, amountPerMember, durationV, _alreadyClaimed); } /** * @notice Calculates available amount for a claim * @dev A pure function which doesn't reads anything from state * @param _now A timestamp to calculate the available amount * @param _start The vesting period start timestamp * @param _amountPerMember The amount of ERC20 tokens to be distributed to each member * during this vesting period * @param _duration The vesting total duration in seconds * @param _alreadyClaimed The amount of tokens already claimed by a member * @return The available amount for a claim */ function getAvailable( uint256 _now, uint256 _start, uint256 _amountPerMember, uint256 _duration, uint256 _alreadyClaimed ) public pure returns (uint256) { if (_now <= _start) { return 0; } // uint256 vestingEndsAt = _start + _duration; uint256 vestingEndsAt = _start.add(_duration); uint256 to = _now > vestingEndsAt ? vestingEndsAt : _now; // uint256 accrued = (to - _start) * _amountPerMember / _duration; uint256 accrued = ((to - _start).mul(_amountPerMember).div(_duration)); // return accrued - _alreadyClaimed; return accrued.sub(_alreadyClaimed); } /*** Owner Methods ***/ /** * @notice Increase global duration of vesting. * Owner must find all personal durations lower than global duration and increase before call this function. * @param _newDurationT New global vesting duration */ function increaseDurationT(uint256 _newDurationT) external onlyOwner { require(block.timestamp < endT, "Vesting::increaseDurationT: Vesting is over"); require(_newDurationT > durationT, "Vesting::increaseDurationT: Too small duration"); require((_newDurationT - durationT) <= 180 days, "Vesting::increaseDurationT: Too big duration"); uint256 prevDurationT = durationT; uint256 prevEndT = endT; durationT = _newDurationT; uint256 newEndT = startT.add(_newDurationT); endT = newEndT; emit IncreaseDurationT(prevDurationT, prevEndT, _newDurationT, newEndT); } /** * @notice Increase personal duration of vesting. * Personal vesting duration must be always greater than global duration. * @param _members Members list for increase duration * @param _newPersonalDurationsT New personal vesting duration */ function increasePersonalDurationsT(address[] calldata _members, uint256[] calldata _newPersonalDurationsT) external onlyOwner { uint256 len = _members.length; require(_newPersonalDurationsT.length == len, "LENGTH_MISMATCH"); for (uint256 i = 0; i < len; i++) { _increasePersonalDurationT(_members[i], _newPersonalDurationsT[i]); } } function _increasePersonalDurationT(address _member, uint256 _newPersonalDurationT) internal { Member memory member = members[_member]; uint256 prevPersonalDurationT = getLoadedMemberDurationT(member); require(_newPersonalDurationT > prevPersonalDurationT, "Vesting::increasePersonalDurationT: Too small duration"); require( (_newPersonalDurationT - prevPersonalDurationT) <= 180 days, "Vesting::increasePersonalDurationT: Too big duration" ); require(_newPersonalDurationT >= durationT, "Vesting::increasePersonalDurationT: Less than durationT"); uint256 prevPersonalEndT = startT.add(prevPersonalDurationT); members[_member].personalDurationT = _newPersonalDurationT.toUint32(); uint256 newPersonalEndT = startT.add(_newPersonalDurationT); emit IncreasePersonalDurationT( _member, prevPersonalDurationT, prevPersonalEndT, member.personalDurationT, _newPersonalDurationT, newPersonalEndT ); } function disableMember(address _member) external onlyOwner { _disableMember(_member); } function _disableMember(address _member) internal { Member memory from = members[_member]; require(from.active == true, "Vesting::_disableMember: The member is inactive"); members[_member].active = false; address currentDelegate = voteDelegations[_member]; uint32 nCheckpoints = numCheckpoints[_member]; if (nCheckpoints != 0 && currentDelegate != address(0) && currentDelegate != _member) { uint96 adjustedVotes = sub96(from.alreadyClaimedVotes, from.alreadyClaimedTokens, "Vesting::_disableMember: AdjustedVotes underflow"); if (adjustedVotes > 0) { _subDelegatedVotesCache(currentDelegate, adjustedVotes); } } delete voteDelegations[_member]; uint256 tokensRemainder = sub96(amountPerMember, from.alreadyClaimedTokens, "Vesting::_disableMember: BalanceRemainder overflow"); require(IERC20(token).transfer(address(1), uint256(tokensRemainder)), "ERC20::transfer: failed"); emit DisableMember(_member, tokensRemainder); } /*** Member Methods ***/ /** * @notice An active member can renounce his membership once. * @dev This action is irreversible. The disabled member can't be enabled again. * Disables all the member's vote checkpoints. Transfers all the member's unclaimed tokens to the address(1). */ function renounceMembership() external { _disableMember(msg.sender); } /** * @notice An active member claims a distributed amount of votes * @dev Caches unclaimed balance per block number which could be used by voting contract * @param _to address to claim votes to */ function claimVotes(address _to) external { Member memory member = members[_to]; require(member.active == true, "Vesting::claimVotes: User not active"); uint256 endT_ = getLoadedMemberEndT(member); uint256 votes = getAvailableVotes({ _alreadyClaimed: member.alreadyClaimedVotes, _memberEndT: endT_ }); require(block.timestamp <= endT_, "Vesting::claimVotes: Vote vesting has ended"); require(votes > 0, "Vesting::claimVotes: Nothing to claim"); _claimVotes(_to, member, votes); } function _claimVotes( address _memberAddress, Member memory _member, uint256 _availableVotes ) internal { uint96 newAlreadyClaimedVotes; if (_availableVotes > 0) { uint96 amount = safe96(_availableVotes, "Vesting::_claimVotes: Amount overflow"); // member.alreadyClaimed += amount newAlreadyClaimedVotes = add96( _member.alreadyClaimedVotes, amount, "Vesting::claimVotes: newAlreadyClaimed overflow" ); members[_memberAddress].alreadyClaimedVotes = newAlreadyClaimedVotes; } else { newAlreadyClaimedVotes = _member.alreadyClaimedVotes; } // Step #1. Get the accrued votes value // lastMemberAdjustedVotes = claimedVotesBeforeTx - claimedTokensBeforeTx uint96 lastMemberAdjustedVotes = sub96( _member.alreadyClaimedVotes, _member.alreadyClaimedTokens, "Vesting::_claimVotes: lastMemberAdjustedVotes overflow" ); // Step #2. Get the adjusted value in relation to the member itself. // `adjustedVotes = votesAfterTx - claimedTokensBeforeTheCalculation` // `claimedTokensBeforeTheCalculation` could be updated earlier in claimVotes() method in the same tx uint96 adjustedVotes = sub96( newAlreadyClaimedVotes, members[_memberAddress].alreadyClaimedTokens, "Vesting::_claimVotes: adjustedVotes underflow" ); address delegate = getVoteUser(_memberAddress); uint96 diff; // Step #3. Apply the adjusted value in relation to the delegate if (adjustedVotes > lastMemberAdjustedVotes) { diff = sub96(adjustedVotes, lastMemberAdjustedVotes, "Vesting::_claimVotes: Positive diff underflow"); _addDelegatedVotesCache(delegate, diff); } else if (lastMemberAdjustedVotes > adjustedVotes) { diff = sub96(lastMemberAdjustedVotes, adjustedVotes, "Vesting::_claimVotes: Negative diff underflow"); _subDelegatedVotesCache(delegate, diff); } emit ClaimVotes( _memberAddress, delegate, _member.alreadyClaimedVotes, _member.alreadyClaimedTokens, newAlreadyClaimedVotes, members[_memberAddress].alreadyClaimedTokens, lastMemberAdjustedVotes, adjustedVotes, diff ); } /** * @notice An active member claims a distributed amount of ERC20 tokens * @param _to address to claim ERC20 tokens to */ function claimTokens(address _to) external { Member memory member = members[msg.sender]; require(member.active == true, "Vesting::claimTokens: User not active"); uint256 durationT_ = getLoadedMemberDurationT(member); uint256 bigAmount = getAvailableTokens(member.alreadyClaimedTokens, durationT_); require(bigAmount > 0, "Vesting::claimTokens: Nothing to claim"); uint96 amount = safe96(bigAmount, "Vesting::claimTokens: Amount overflow"); // member.alreadyClaimed += amount uint96 newAlreadyClaimed = add96(member.alreadyClaimedTokens, amount, "Vesting::claimTokens: NewAlreadyClaimed overflow"); members[msg.sender].alreadyClaimedTokens = newAlreadyClaimed; uint256 endT_ = startT.add(durationT_); uint256 votes = getAvailableVotes({ _alreadyClaimed: member.alreadyClaimedVotes, _memberEndT: endT_ }); if (block.timestamp <= endT) { _claimVotes(msg.sender, member, votes); } emit ClaimTokens(msg.sender, _to, amount, newAlreadyClaimed, votes); require(IERC20(token).transfer(_to, bigAmount), "ERC20::transfer: failed"); } /** * @notice Delegates an already claimed votes amount to the given address * @param _to address to delegate votes */ function delegateVotes(address _to) external { Member memory member = members[msg.sender]; require(_to != address(0), "Vesting::delegateVotes: Can't delegate to 0 address"); require(member.active == true, "Vesting::delegateVotes: msg.sender not active"); address currentDelegate = getVoteUser(msg.sender); require(_to != currentDelegate, "Vesting::delegateVotes: Already delegated to this address"); voteDelegations[msg.sender] = _to; uint96 adjustedVotes = sub96(member.alreadyClaimedVotes, member.alreadyClaimedTokens, "Vesting::claimVotes: AdjustedVotes underflow"); _subDelegatedVotesCache(currentDelegate, adjustedVotes); _addDelegatedVotesCache(_to, adjustedVotes); emit DelegateVotes(msg.sender, _to, currentDelegate, adjustedVotes); } /** * @notice Transfers a vested rights for a member funds to another address * @dev A new member won't have any votes for a period between a start timestamp and a current timestamp * @param _to address to transfer a vested right to */ function transfer(address _to) external { Member memory from = members[msg.sender]; Member memory to = members[_to]; uint96 alreadyClaimedTokens = from.alreadyClaimedTokens; uint96 alreadyClaimedVotes = from.alreadyClaimedVotes; uint32 personalDurationT = from.personalDurationT; require(from.active == true, "Vesting::transfer: From member is inactive"); require(to.active == false, "Vesting::transfer: To address is already active"); require(to.transferred == false, "Vesting::transfer: To address has been already used"); require(numCheckpoints[_to] == 0, "Vesting::transfer: To address already had a checkpoint"); members[msg.sender] = Member({ active: false, transferred: true, alreadyClaimedVotes: 0, alreadyClaimedTokens: 0, personalDurationT: 0 }); members[_to] = Member({ active: true, transferred: false, alreadyClaimedVotes: alreadyClaimedVotes, alreadyClaimedTokens: alreadyClaimedTokens, personalDurationT: personalDurationT }); address currentDelegate = voteDelegations[msg.sender]; uint32 currentBlockNumber = safe32(block.number, "Vesting::transfer: Block number exceeds 32 bits"); checkpoints[_to][0] = Checkpoint(uint32(0), 0); if (currentDelegate == address(0)) { uint96 adjustedVotes = sub96(from.alreadyClaimedVotes, from.alreadyClaimedTokens, "Vesting::claimVotes: AdjustedVotes underflow"); _subDelegatedVotesCache(msg.sender, adjustedVotes); checkpoints[_to][1] = Checkpoint(currentBlockNumber, adjustedVotes); numCheckpoints[_to] = 2; } else { numCheckpoints[_to] = 1; } voteDelegations[_to] = voteDelegations[msg.sender]; delete voteDelegations[msg.sender]; Member memory toMember = members[_to]; emit Transfer(msg.sender, _to, alreadyClaimedVotes, alreadyClaimedTokens, currentDelegate); uint256 votes = getAvailableVotes({ _alreadyClaimed: toMember.alreadyClaimedVotes, _memberEndT: getLoadedMemberEndT(toMember) }); _claimVotes(_to, toMember, votes); } function _subDelegatedVotesCache(address _member, uint96 _subAmount) internal { uint32 dstRepNum = numCheckpoints[_member]; uint96 dstRepOld = dstRepNum > 0 ? checkpoints[_member][dstRepNum - 1].votes : 0; uint96 dstRepNew = sub96(dstRepOld, _subAmount, "Vesting::_cacheUnclaimed: Sub amount overflows"); _writeCheckpoint(_member, dstRepNum, dstRepOld, dstRepNew); } function _addDelegatedVotesCache(address _member, uint96 _addAmount) internal { uint32 dstRepNum = numCheckpoints[_member]; uint96 dstRepOld = dstRepNum > 0 ? checkpoints[_member][dstRepNum - 1].votes : 0; uint96 dstRepNew = add96(dstRepOld, _addAmount, "Vesting::_cacheUnclaimed: Add amount overflows"); _writeCheckpoint(_member, dstRepNum, dstRepOld, dstRepNew); } /// @dev A copy from CVP token, only the event name changed function _writeCheckpoint( address delegatee, uint32 nCheckpoints, uint96 oldVotes, uint96 newVotes ) internal { uint32 blockNumber = safe32(block.number, "Vesting::_writeCheckpoint: Block number exceeds 32 bits"); if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) { checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes); numCheckpoints[delegatee] = nCheckpoints + 1; } emit UnclaimedBalanceChanged(delegatee, oldVotes, newVotes); } /// @dev The exact copy from CVP token function safe32(uint256 n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } /// @dev The exact copy from CVP token function safe96(uint256 n, string memory errorMessage) internal pure returns (uint96) { require(n < 2**96, errorMessage); return uint96(n); } /// @dev The exact copy from CVP token function sub96( uint96 a, uint96 b, string memory errorMessage ) internal pure returns (uint96) { require(b <= a, errorMessage); return a - b; } /// @dev The exact copy from CVP token function add96( uint96 a, uint96 b, string memory errorMessage ) internal pure returns (uint96) { uint96 c = a + b; require(c >= a, errorMessage); return c; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"uint256","name":"_startV","type":"uint256"},{"internalType":"uint256","name":"_durationV","type":"uint256"},{"internalType":"uint256","name":"_startT","type":"uint256"},{"internalType":"uint256","name":"_durationT","type":"uint256"},{"internalType":"uint96","name":"_amountPerMember","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"member","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint96","name":"amount","type":"uint96"},{"indexed":false,"internalType":"uint256","name":"newAlreadyClaimed","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"votesAvailable","type":"uint256"}],"name":"ClaimTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"member","type":"address"},{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint96","name":"lastAlreadyClaimedVotes","type":"uint96"},{"indexed":false,"internalType":"uint96","name":"lastAlreadyClaimedTokens","type":"uint96"},{"indexed":false,"internalType":"uint96","name":"newAlreadyClaimedVotes","type":"uint96"},{"indexed":false,"internalType":"uint96","name":"newAlreadyClaimedTokens","type":"uint96"},{"indexed":false,"internalType":"uint96","name":"lastMemberAdjustedVotes","type":"uint96"},{"indexed":false,"internalType":"uint96","name":"adjustedVotes","type":"uint96"},{"indexed":false,"internalType":"uint96","name":"diff","type":"uint96"}],"name":"ClaimVotes","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"address","name":"previousDelegate","type":"address"},{"indexed":false,"internalType":"uint96","name":"adjustedVotes","type":"uint96"}],"name":"DelegateVotes","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"member","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokensRemainder","type":"uint256"}],"name":"DisableMember","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"prevDurationT","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"prevEndT","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newDurationT","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newEndT","type":"uint256"}],"name":"IncreaseDurationT","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"member","type":"address"},{"indexed":false,"internalType":"uint256","name":"prevEvaluatedDurationT","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"prevEvaluatedEndT","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"prevPersonalDurationT","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newPersonalDurationT","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newPersonalEndT","type":"uint256"}],"name":"IncreasePersonalDurationT","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"members","type":"address[]"}],"name":"Init","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint96","name":"alreadyClaimedVotes","type":"uint96"},{"indexed":false,"internalType":"uint96","name":"alreadyClaimedTokens","type":"uint96"},{"indexed":false,"internalType":"address","name":"currentDelegate","type":"address"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"member","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousUnclaimed","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newUnclaimed","type":"uint256"}],"name":"UnclaimedBalanceChanged","type":"event"},{"inputs":[],"name":"amountPerMember","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint96","name":"votes","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"claimVotes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"delegateVotes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_member","type":"address"}],"name":"disableMember","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"durationT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"durationV","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endV","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_now","type":"uint256"},{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_amountPerMember","type":"uint256"},{"internalType":"uint256","name":"_duration","type":"uint256"},{"internalType":"uint256","name":"_alreadyClaimed","type":"uint256"}],"name":"getAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"_alreadyClaimed","type":"uint256"},{"internalType":"uint256","name":"_durationT","type":"uint256"}],"name":"getAvailableTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_member","type":"address"}],"name":"getAvailableTokensForMember","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_atTimestamp","type":"uint256"},{"internalType":"address","name":"_member","type":"address"}],"name":"getAvailableTokensForMemberAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_alreadyClaimed","type":"uint256"},{"internalType":"uint256","name":"_memberEndT","type":"uint256"}],"name":"getAvailableVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_member","type":"address"}],"name":"getAvailableVotesForMember","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_member","type":"address"}],"name":"getLastCachedVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_member","type":"address"}],"name":"getMemberDurationT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_member","type":"address"}],"name":"getMemberEndT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_voteHolder","type":"address"}],"name":"getVoteUser","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasTokenVestingEnded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasTokenVestingStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasVoteVestingEnded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasVoteVestingStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newDurationT","type":"uint256"}],"name":"increaseDurationT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_members","type":"address[]"},{"internalType":"uint256[]","name":"_newPersonalDurationsT","type":"uint256[]"}],"name":"increasePersonalDurationsT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_memberList","type":"address[]"}],"name":"initializeMembers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"memberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"members","outputs":[{"internalType":"bool","name":"active","type":"bool"},{"internalType":"bool","name":"transferred","type":"bool"},{"internalType":"uint32","name":"personalDurationT","type":"uint32"},{"internalType":"uint96","name":"alreadyClaimedVotes","type":"uint96"},{"internalType":"uint96","name":"alreadyClaimedTokens","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceMembership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startV","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"voteDelegations","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6101406040523480156200001257600080fd5b50604051620042d8380380620042d8833981810160405260c08110156200003857600080fd5b508051602082015160408301516060840151608085015160a090950151939492939192909160006200006962000363565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001841162000109576040805162461bcd60e51b815260206004820152601a60248201527f56657374696e673a20496e76616c6964206475726174696f6e56000000000000604482015290519081900360640190fd5b600182116200015f576040805162461bcd60e51b815260206004820152601a60248201527f56657374696e673a20496e76616c6964206475726174696f6e54000000000000604482015290519081900360640190fd5b8285106200019f5760405162461bcd60e51b8152600401808060200182810382526021815260200180620042936021913960400191505060405180910390fd5b620001b982846200036760201b620027781790919060201c565b620001d385876200036760201b620027781790919060201c565b111562000227576040805162461bcd60e51b815260206004820152601e60248201527f56657374696e673a20526571756972657320656e6456203c3d20656e64540000604482015290519081900360640190fd5b6000816001600160601b031611620002715760405162461bcd60e51b8152600401808060200182810382526022815260200180620042716022913960400191505060405180910390fd5b6000866001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015620002ad57600080fd5b505afa158015620002c2573d6000803e3d6000fd5b505050506040513d6020811015620002d957600080fd5b505111620003195760405162461bcd60e51b8152600401808060200182810382526024815260200180620042b46024913960400191505060405180910390fd5b60609590951b6001600160601b03191660805260a084815260c08490529290930160e05261010081905260028390559091016003551b6001600160a01b03191661012052620003c9565b3390565b600082820183811015620003c2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60805160601c60a05160c05160e051610100516101205160a01c613dfe6200047360003980611042528061113452806112b65280611dfc5280612e02525080611021528061111352806111d65280611c8a5280611e7e5280611eb052806122cf52806132f3528061335d5250806111fd52806124f55250806111b25280611e2652508061118b52806112925280611ddb52508061237e52806127565280612e3d5250613dfe6000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c80638c5fcdda1161013b578063ca28f0d0116100b8578063ec77ad251161007c578063ec77ad25146106e6578063edad62ce146107a4578063f1127ed8146107ac578063f2fde38b14610806578063fc0c546a1461082c57610248565b8063ca28f0d0146105fe578063d1a8c91b14610624578063df8de3e714610692578063e66907ac146106b8578063e6c2e94d146106de57610248565b8063a8b7d824116100ff578063a8b7d8241461056d578063a94f0b8314610575578063ac1f80691461059b578063ac2e4ef9146105a3578063ad93b23b146105c957610248565b80638c5fcdda146104bd5780638da5cb5b146104e3578063924d8cd214610507578063991007dc146105245780639ad1c55d1461054a57610248565b806356cb9c06116101c95780636e4558f01161018d5780636e4558f0146103fe5780636fcfff4514610424578063715018a614610463578063782d6fe11461046b578063855910871461049757610248565b806356cb9c061461037e5780635918ba79146103865780635cfa7d02146103ac5780635e6a1dd8146103b45780636947d790146103d857610248565b806331f5ee7b1161021057806331f5ee7b1461031e578063380b8e4a1461034a5780633c1d2f5e1461036657806351771f401461036e578063544c7f1f1461037657610248565b806308ae4b0c1461024d57806311aee380146102b15780631a695230146102cb578063286f89f5146102f35780632cfb06fc146102fb575b600080fd5b6102736004803603602081101561026357600080fd5b50356001600160a01b0316610834565b604080519515158652931515602086015263ffffffff909216848401526001600160601b039081166060850152166080830152519081900360a00190f35b6102b961087c565b60408051918252519081900360200190f35b6102f1600480360360208110156102e157600080fd5b50356001600160a01b0316610882565b005b6102b9611013565b6102b96004803603604081101561031157600080fd5b5080359060200135611019565b6102b96004803603604081101561033457600080fd5b50803590602001356001600160a01b031661107a565b610352611180565b604080519115158252519081900360200190f35b610352611189565b6102b96111b0565b6103526111d4565b6103526111fb565b6102f16004803603602081101561039c57600080fd5b50356001600160a01b0316611222565b6102b9611290565b6103bc6112b4565b604080516001600160601b039092168252519081900360200190f35b6102f1600480360360208110156103ee57600080fd5b50356001600160a01b03166112d8565b6102b96004803603602081101561041457600080fd5b50356001600160a01b0316611450565b61044a6004803603602081101561043a57600080fd5b50356001600160a01b03166114ed565b6040805163ffffffff9092168252519081900360200190f35b6102f1611505565b6103bc6004803603604081101561048157600080fd5b506001600160a01b0381351690602001356115b1565b6102b9600480360360208110156104ad57600080fd5b50356001600160a01b031661189b565b6102f1600480360360208110156104d357600080fd5b50356001600160a01b0316611915565b6104eb611b40565b604080516001600160a01b039092168252519081900360200190f35b6102f16004803603602081101561051d57600080fd5b5035611b4f565b6102b96004803603602081101561053a57600080fd5b50356001600160a01b0316611d05565b6102b96004803603604081101561056057600080fd5b5080359060200135611db7565b6102b9611e4b565b6104eb6004803603602081101561058b57600080fd5b50356001600160a01b0316611e51565b6102b9611e7c565b6102b9600480360360208110156105b957600080fd5b50356001600160a01b0316611ea0565b6102b9600480360360a08110156105df57600080fd5b5080359060208101359060408101359060608101359060800135611ed5565b6104eb6004803603602081101561061457600080fd5b50356001600160a01b0316611f3a565b6102f16004803603602081101561063a57600080fd5b810190602081018135600160201b81111561065457600080fd5b82018360208201111561066657600080fd5b803590602001918460208302840111600160201b8311171561068757600080fd5b509092509050611f55565b6102f1600480360360208110156106a857600080fd5b50356001600160a01b0316612123565b6102b9600480360360208110156106ce57600080fd5b50356001600160a01b0316612474565b6102b96124f3565b6102f1600480360360408110156106fc57600080fd5b810190602081018135600160201b81111561071657600080fd5b82018360208201111561072857600080fd5b803590602001918460208302840111600160201b8311171561074957600080fd5b919390929091602081019035600160201b81111561076657600080fd5b82018360208201111561077857600080fd5b803590602001918460208302840111600160201b8311171561079957600080fd5b509092509050612517565b6102f1612612565b6107de600480360360408110156107c257600080fd5b5080356001600160a01b0316906020013563ffffffff1661261d565b6040805163ffffffff90931683526001600160601b0390911660208301528051918290030190f35b6102f16004803603602081101561081c57600080fd5b50356001600160a01b0316612652565b6104eb612754565b60046020526000908152604090205460ff8082169161010081049091169063ffffffff62010000820416906001600160601b03600160301b8204811691600160901b90041685565b60015481565b61088a6136a7565b5033600090815260046020908152604091829020825160a081018452905460ff8082161515835261010082041615159282019290925263ffffffff62010000830416928101929092526001600160601b03600160301b820481166060840152600160901b9091041660808201526108ff6136a7565b506001600160a01b038216600090815260046020908152604091829020825160a081018452905460ff8082161515835261010082041615159282019290925263ffffffff62010000830416818401526001600160601b03600160301b83048116606080840191909152600160901b909304166080808301919091528401519184015192840151845191939115156001146109ca5760405162461bcd60e51b815260040180806020018281038252602a815260200180613a29602a913960400191505060405180910390fd5b835115610a085760405162461bcd60e51b815260040180806020018281038252602f8152602001806136ed602f913960400191505060405180910390fd5b602084015115610a495760405162461bcd60e51b8152600401808060200182810382526033815260200180613d966033913960400191505060405180910390fd5b6001600160a01b03861660009081526006602052604090205463ffffffff1615610aa45760405162461bcd60e51b81526004018080602001828103825260368152602001806138636036913960400191505060405180910390fd5b6040518060a00160405280600015158152602001600115158152602001600063ffffffff16815260200160006001600160601b0316815260200160006001600160601b031681525060046000336001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548163ffffffff021916908363ffffffff16021790555060608201518160000160066101000a8154816001600160601b0302191690836001600160601b0316021790555060808201518160000160126101000a8154816001600160601b0302191690836001600160601b031602179055509050506040518060a001604052806001151581526020016000151581526020018263ffffffff168152602001836001600160601b03168152602001846001600160601b031681525060046000886001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548163ffffffff021916908363ffffffff16021790555060608201518160000160066101000a8154816001600160601b0302191690836001600160601b0316021790555060808201518160000160126101000a8154816001600160601b0302191690836001600160601b03160217905550905050600060076000336001600160a01b03166001600160a01b0316815260200190815260200160002060009054906101000a90046001600160a01b031690506000610d64436040518060600160405280602f8152602001613add602f91396127d2565b604080518082018252600080825260208083018281526001600160a01b03808f16845260058352858420848052909252939091209151825493516001600160601b0316600160201b02640100000000600160801b031963ffffffff9290921663ffffffff1990951694909417169290921790559091508216610eac576000610e0d886060015189608001516040518060600160405280602c8152602001613777602c913961286c565b9050610e1933826128d9565b60408051808201825263ffffffff80851682526001600160601b0393841660208084019182526001600160a01b038e16600081815260058352868120600182528352868120955186549451909816600160201b02640100000000600160801b03199890951663ffffffff199485161797909716939093179093559084526006909152912080549091166002179055610ed3565b6001600160a01b0388166000908152600660205260409020805463ffffffff191660011790555b3360008181526007602052604080822080546001600160a01b038d811685529284208054939091166001600160a01b0319938416179055929091528154169055610f1b6136a7565b506001600160a01b03808916600081815260046020908152604091829020825160a081018452905460ff8082161515835261010082041615158284015263ffffffff62010000820416828501526001600160601b03600160301b82048116606080850191909152600160901b9092048116608084015284518b82168152908c1693810193909352948716828401529151919333927f89880baf02655bce35a9ff5e1df9c8e582f6311e4889ca26667c1e3f889fc0fe9281900390910190a36000610ffa82606001516001600160601b0316610ff584612980565b611db7565b90506110078a838361298e565b50505050505050505050565b60025481565b6000611071427f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006001600160601b03168587611ed5565b90505b92915050565b60006110846136a7565b506001600160a01b038216600090815260046020908152604091829020825160a081018452905460ff8082161515808452610100830490911615159383019390935263ffffffff62010000820416938201939093526001600160601b03600160301b840481166060830152600160901b909304909216608083015261110d576000915050611074565b611178847f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006001600160601b031661116585612c1c565b85608001516001600160601b0316611ed5565b949350505050565b60035442101590565b7f000000000000000000000000000000000000000000000000000000000000000042101590565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000042101590565b7f000000000000000000000000000000000000000000000000000000000000000042101590565b61122a612c39565b6001600160a01b031661123b611b40565b6001600160a01b031614611284576040805162461bcd60e51b81526020600482018190526024820152600080516020613b2d833981519152604482015290519081900360640190fd5b61128d81612c3d565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b6112e06136a7565b506001600160a01b038116600090815260046020908152604091829020825160a081018452905460ff8082161515808452610100830490911615159383019390935263ffffffff62010000820416938201939093526001600160601b03600160301b840481166060830152600160901b90930490921660808301526001146113995760405162461bcd60e51b8152600401808060200182810382526024815260200180613d726024913960400191505060405180910390fd5b60006113a482612980565b905060006113bf83606001516001600160601b031683611db7565b9050814211156114005760405162461bcd60e51b815260040180806020018281038252602b8152602001806138ed602b913960400191505060405180910390fd5b6000811161143f5760405162461bcd60e51b8152600401808060200182810382526025815260200180613cea6025913960400191505060405180910390fd5b61144a84848361298e565b50505050565b6001600160a01b0381166000908152600460205260408120805460ff1661147b5760009150506114e8565b80546040805160a08101825260ff808416151582526101008404161515602082015263ffffffff62010000840416918101919091526001600160601b03600160301b8304811660608301819052600160901b9093041660808201526114e49190610ff590612980565b9150505b919050565b60066020526000908152604090205463ffffffff1681565b61150d612c39565b6001600160a01b031661151e611b40565b6001600160a01b031614611567576040805162461bcd60e51b81526020600482018190526024820152600080516020613b2d833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60004382106115f15760405162461bcd60e51b815260040180806020018281038252602a8152602001806139d3602a913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205463ffffffff166116186136a7565b506001600160a01b038416600090815260046020908152604091829020825160a081018452905460ff80821615158352610100820416151592820183905263ffffffff62010000820416938201939093526001600160601b03600160301b840481166060830152600160901b9093049092166080830152600114156116a257600092505050611074565b6116ab81612980565b4211806116b9575060035442115b156116c957600092505050611074565b63ffffffff8216158061170457506001600160a01b038516600090815260056020908152604080832083805290915290205463ffffffff1684105b1561171457600092505050611074565b6001600160a01b038516600090815260056020908152604080832063ffffffff60001987018116855292529091205416841061179157506001600160a01b03841660009081526005602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b03169050611074565b600060001983015b8163ffffffff168163ffffffff16111561185557600282820363ffffffff160481036117c36136d5565b506001600160a01b038816600090815260056020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b0316918101919091529088141561183057602001519550611074945050505050565b805163ffffffff168811156118475781935061184e565b6001820392505b5050611799565b506001600160a01b038616600090815260056020908152604080832063ffffffff909416835292905220546001600160601b03600160201b909104169250505092915050565b6001600160a01b03811660009081526006602052604081205463ffffffff16806118c6576000611905565b6001600160a01b0383166000908152600560209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03165b6001600160601b03169392505050565b61191d6136a7565b5033600090815260046020908152604091829020825160a081018452905460ff8082161515835261010082041615159282019290925263ffffffff62010000830416928101929092526001600160601b03600160301b820481166060840152600160901b9091041660808201526001600160a01b0382166119cf5760405162461bcd60e51b81526004018080602001828103825260338152602001806139456033913960400191505060405180910390fd5b80511515600114611a115760405162461bcd60e51b815260040180806020018281038252602d8152602001806137d7602d913960400191505060405180910390fd5b6000611a1c33611e51565b9050806001600160a01b0316836001600160a01b03161415611a6f5760405162461bcd60e51b815260040180806020018281038252603981526020018061382a6039913960400191505060405180910390fd5b33600090815260076020908152604080832080546001600160a01b0319166001600160a01b03881617905560608581015160808701518351928301909352602c808352611ac694919392916137779083013961286c565b9050611ad282826128d9565b611adc8482612f70565b816001600160a01b0316846001600160a01b0316336001600160a01b03167fb62a174a641bf478889ef54cf579217791f8ef54d7cfacc0924700208519651c8460405180826001600160601b0316815260200191505060405180910390a450505050565b6000546001600160a01b031690565b611b57612c39565b6001600160a01b0316611b68611b40565b6001600160a01b031614611bb1576040805162461bcd60e51b81526020600482018190526024820152600080516020613b2d833981519152604482015290519081900360640190fd5b6003544210611bf15760405162461bcd60e51b815260040180806020018281038252602b81526020018061374c602b913960400191505060405180910390fd5b6002548111611c315760405162461bcd60e51b815260040180806020018281038252602e815260200180613c11602e913960400191505060405180910390fd5b62ed4e0060025482031115611c775760405162461bcd60e51b815260040180806020018281038252602c8152602001806139fd602c913960400191505060405180910390fd5b6002805460035491839055906000611caf7f000000000000000000000000000000000000000000000000000000000000000085612778565b600381905560408051858152602081018590528082018790526060810183905290519192507f5a6734ec95556a026d02eb57f42144a068a58a7fd3d700549bd22ba371d1a920919081900360800190a150505050565b6000611d0f6136a7565b506001600160a01b038216600090815260046020908152604091829020825160a081018452905460ff8082161515808452610100830490911615159383019390935263ffffffff62010000820416938201939093526001600160601b03600160301b840481166060830152600160901b9093049092166080830152611d985760009150506114e8565b6114e481608001516001600160601b0316611db283612c1c565b611019565b600081421180611dc8575060035442115b15611dd557506000611074565b611071427f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006001600160601b03167f000000000000000000000000000000000000000000000000000000000000000087611ed5565b60035481565b6001600160a01b038082166000908152600760205260408120549091168061107457829150506114e8565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000611074611eae83612474565b7f000000000000000000000000000000000000000000000000000000000000000090612778565b6000848611611ee657506000611f31565b6000611ef28685612778565b90506000818811611f035787611f05565b815b90506000611f1f86611f198a85038a613002565b9061305b565b9050611f2b818661309d565b93505050505b95945050505050565b6007602052600090815260409020546001600160a01b031681565b611f5d612c39565b6001600160a01b0316611f6e611b40565b6001600160a01b031614611fb7576040805162461bcd60e51b81526020600482018190526024820152600080516020613b2d833981519152604482015290519081900360640190fd5b6001541561200c576040805162461bcd60e51b815260206004820152601c60248201527f56657374696e673a20416c726561647920696e697469616c697a656400000000604482015290519081900360640190fd5b808061205f576040805162461bcd60e51b815260206004820152601a60248201527f56657374696e673a20456d707479206d656d626572206c697374000000000000604482015290519081900360640190fd5b600181905560005b818110156120ba5760016004600086868581811061208157fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101612067565b507f666d383ccf45e51cbf9b64e4e30bd3fd7ca860204a781574e5cf41ba71a0a877838360405180806020018281038252848482818152602001925060200280828437600083820152604051601f909101601f19169092018290039550909350505050a1505050565b61212b6136a7565b5033600090815260046020908152604091829020825160a081018452905460ff8082161515808452610100830490911615159383019390935263ffffffff62010000820416938201939093526001600160601b03600160301b840481166060830152600160901b90930490921660808301526001146121db5760405162461bcd60e51b8152600401808060200182810382526025815260200180613bb66025913960400191505060405180910390fd5b60006121e682612c1c565b9050600061220183608001516001600160601b031683611019565b9050600081116122425760405162461bcd60e51b8152600401808060200182810382526026815260200180613cc46026913960400191505060405180910390fd5b600061226682604051806060016040528060258152602001613a53602591396130df565b9050600061229185608001518360405180606001604052806030815260200161371c60309139613134565b33600090815260046020526040812080546bffffffffffffffffffffffff60901b1916600160901b6001600160601b038516021790559091506122f47f000000000000000000000000000000000000000000000000000000000000000086612778565b9050600061230f87606001516001600160601b031683611db7565b905060035442116123255761232533888361298e565b604080516001600160601b0380871682528516602082015280820183905290516001600160a01b038a169133917fe3a16c28e67957e6b807157ed70c0f99a5a5df25995ebc04ec990ecfe9017dea9181900360600190a37f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a9059cbb89876040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156123f357600080fd5b505af1158015612407573d6000803e3d6000fd5b505050506040513d602081101561241d57600080fd5b505161246a576040805162461bcd60e51b8152602060048201526017602482015276115490cc8c0e8e9d1c985b9cd9995c8e8819985a5b1959604a1b604482015290519081900360640190fd5b5050505050505050565b6001600160a01b0381166000908152600460209081526040808320815160a081018352905460ff8082161515835261010082041615159382019390935263ffffffff62010000840416918101919091526001600160601b03600160301b830481166060830152600160901b909204909116608082015261107490612c1c565b7f000000000000000000000000000000000000000000000000000000000000000081565b61251f612c39565b6001600160a01b0316612530611b40565b6001600160a01b031614612579576040805162461bcd60e51b81526020600482018190526024820152600080516020613b2d833981519152604482015290519081900360640190fd5b828181146125c0576040805162461bcd60e51b815260206004820152600f60248201526e0988a9c8ea890be9a92a69a82a8869608b1b604482015290519081900360640190fd5b60005b8181101561260a576126028686838181106125da57fe5b905060200201356001600160a01b03168585848181106125f657fe5b9050602002013561319e565b6001016125c3565b505050505050565b61261b33612c3d565b565b600560209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b61265a612c39565b6001600160a01b031661266b611b40565b6001600160a01b0316146126b4576040805162461bcd60e51b81526020600482018190526024820152600080516020613b2d833981519152604482015290519081900360640190fd5b6001600160a01b0381166126f95760405162461bcd60e51b81526004018080602001828103825260268152602001806138046026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b7f000000000000000000000000000000000000000000000000000000000000000081565b600082820183811015611071576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081600160201b84106128645760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612829578181015183820152602001612811565b50505050905090810190601f1680156128565780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b509192915050565b6000836001600160601b0316836001600160601b0316111582906128d15760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612829578181015183820152602001612811565b505050900390565b6001600160a01b03821660009081526006602052604081205463ffffffff169081612905576000612944565b6001600160a01b0384166000908152600560209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b9050600061296b82856040518060600160405280602e81526020016139a5602e913961286c565b9050612979858484846133f3565b5050505050565b6000611074611eae83612c1c565b60008115612a2e5760006129ba83604051806060016040528060258152602001613899602591396130df565b90506129e38460600151826040518060600160405280602f81526020016138be602f9139613134565b6001600160a01b0386166000908152600460205260409020805471ffffffffffffffffffffffff0000000000001916600160301b6001600160601b038416021790559150612a359050565b5060608201515b6000612a6284606001518560800151604051806060016040528060368152602001613bdb6036913961286c565b90506000612ac48360046000896001600160a01b03166001600160a01b0316815260200190815260200160002060000160129054906101000a90046001600160601b03166040518060600160405280602d8152602001613d0f602d913961286c565b90506000612ad187611e51565b90506000836001600160601b0316836001600160601b03161115612b2357612b1283856040518060600160405280602d8152602001613978602d913961286c565b9050612b1e8282612f70565b612b6c565b826001600160601b0316846001600160601b03161115612b6c57612b6084846040518060600160405280602d8152602001613918602d913961286c565b9050612b6c82826128d9565b6060808801516080808a01516001600160a01b038c81166000818152600460209081526040918290205482516001600160601b03988916815295881691860191909152868d1685830152600160901b90048616968401969096528985169383019390935287841660a083015292851660c082015292519185169290917fa5f76077cbbfd3516304bdaf271d57fc3b3a07a9c7e457d1d71a608ff08f88579181900360e00190a35050505050505050565b604081015160009063ffffffff16806110745750506002546114e8565b3390565b612c456136a7565b506001600160a01b038116600090815260046020908152604091829020825160a081018452905460ff8082161515808452610100830490911615159383019390935263ffffffff62010000820416938201939093526001600160601b03600160301b840481166060830152600160901b9093049092166080830152600114612cfe5760405162461bcd60e51b815260040180806020018281038252602f815260200180613c95602f913960400191505060405180910390fd5b6001600160a01b038083166000908152600460209081526040808320805460ff19169055600782528083205460069092529091205491169063ffffffff168015801590612d5357506001600160a01b03821615155b8015612d715750836001600160a01b0316826001600160a01b031614155b15612dc0576000612da384606001518560800151604051806060016040528060308152602001613c656030913961286c565b90506001600160601b03811615612dbe57612dbe83826128d9565b505b6001600160a01b038416600090815260076020908152604080832080546001600160a01b031916905560808601518151606081019092526032808352612e30937f0000000000000000000000000000000000000000000000000000000000000000939190613b4d9083013961286c565b6001600160601b031690507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a9059cbb6001836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015612eb357600080fd5b505af1158015612ec7573d6000803e3d6000fd5b505050506040513d6020811015612edd57600080fd5b5051612f2a576040805162461bcd60e51b8152602060048201526017602482015276115490cc8c0e8e9d1c985b9cd9995c8e8819985a5b1959604a1b604482015290519081900360640190fd5b6040805182815290516001600160a01b038716917fb45a457e995cc15eb8d3fa8f902b0ec290524ef773435e826c873e688ff6598a919081900360200190a25050505050565b6001600160a01b03821660009081526006602052604081205463ffffffff169081612f9c576000612fdb565b6001600160a01b0384166000908152600560209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b9050600061296b82856040518060600160405280602e8152602001613a78602e9139613134565b60008261301157506000611074565b8282028284828161301e57fe5b04146110715760405162461bcd60e51b8152600401808060200182810382526021815260200180613b0c6021913960400191505060405180910390fd5b600061107183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506135a8565b600061107183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061360d565b600081600160601b84106128645760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612829578181015183820152602001612811565b6000838301826001600160601b0380871690831610156131955760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612829578181015183820152602001612811565b50949350505050565b6131a66136a7565b506001600160a01b0382166000908152600460209081526040808320815160a081018352905460ff8082161515835261010082041615159382019390935263ffffffff62010000840416918101919091526001600160601b03600160301b830481166060830152600160901b90920490911660808201529061322782612c1c565b90508083116132675760405162461bcd60e51b8152600401808060200182810382526036815260200180613d3c6036913960400191505060405180910390fd5b62ed4e0081840311156132ab5760405162461bcd60e51b81526004018080602001828103825260348152602001806137a36034913960400191505060405180910390fd5b6002548310156132ec5760405162461bcd60e51b8152600401808060200182810382526037815260200180613b7f6037913960400191505060405180910390fd5b60006133187f000000000000000000000000000000000000000000000000000000000000000083612778565b90506133238461365f565b6001600160a01b0386166000908152600460205260408120805465ffffffff000019166201000063ffffffff9485160217905590613385907f000000000000000000000000000000000000000000000000000000000000000090879061277816565b60408086015181518681526020810186905263ffffffff90911681830152606081018890526080810183905290519192506001600160a01b038816917fb317eca0b8b70522ba0658df4adfb0df252dcd149ff175057666109b8df2b3be9181900360a00190a2505050505050565b600061341743604051806060016040528060378152602001613aa6603791396127d2565b905060008463ffffffff1611801561346057506001600160a01b038516600090815260056020908152604080832063ffffffff6000198901811685529252909120548282169116145b156134ba576001600160a01b0385166000908152600560209081526040808320600019880163ffffffff16845290915290208054640100000000600160801b031916600160201b6001600160601b03851602179055613554565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600583528781208c871682528352878120965187549451909516600160201b02640100000000600160801b031995871663ffffffff19958616179590951694909417909555938252600690935292909220805460018801909316929091169190911790555b604080516001600160601b0380861682528416602082015281516001600160a01b038816927ff6ab64320c70b20a37e43daa63d22b9c5ac61b4967b2faed4e705aafde54baaa928290030190a25050505050565b600081836135f75760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612829578181015183820152602001612811565b50600083858161360357fe5b0495945050505050565b600081848411156128d15760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612829578181015183820152602001612811565b6000600160201b82106136a35760405162461bcd60e51b8152600401808060200182810382526026815260200180613c3f6026913960400191505060405180910390fd5b5090565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915290565b60408051808201909152600080825260208201529056fe56657374696e673a3a7472616e736665723a20546f206164647265737320697320616c72656164792061637469766556657374696e673a3a636c61696d546f6b656e733a204e6577416c7265616479436c61696d6564206f766572666c6f7756657374696e673a3a696e6372656173654475726174696f6e543a2056657374696e67206973206f76657256657374696e673a3a636c61696d566f7465733a2041646a7573746564566f74657320756e646572666c6f7756657374696e673a3a696e637265617365506572736f6e616c4475726174696f6e543a20546f6f20626967206475726174696f6e56657374696e673a3a64656c6567617465566f7465733a206d73672e73656e646572206e6f74206163746976654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737356657374696e673a3a64656c6567617465566f7465733a20416c72656164792064656c65676174656420746f2074686973206164647265737356657374696e673a3a7472616e736665723a20546f206164647265737320616c726561647920686164206120636865636b706f696e7456657374696e673a3a5f636c61696d566f7465733a20416d6f756e74206f766572666c6f7756657374696e673a3a636c61696d566f7465733a206e6577416c7265616479436c61696d6564206f766572666c6f7756657374696e673a3a636c61696d566f7465733a20566f74652076657374696e672068617320656e64656456657374696e673a3a5f636c61696d566f7465733a204e65676174697665206469666620756e646572666c6f7756657374696e673a3a64656c6567617465566f7465733a2043616e27742064656c656761746520746f2030206164647265737356657374696e673a3a5f636c61696d566f7465733a20506f736974697665206469666620756e646572666c6f7756657374696e673a3a5f6361636865556e636c61696d65643a2053756220616d6f756e74206f766572666c6f777356657374696e673a3a6765745072696f72566f7465733a204e6f74207965742064657465726d696e656456657374696e673a3a696e6372656173654475726174696f6e543a20546f6f20626967206475726174696f6e56657374696e673a3a7472616e736665723a2046726f6d206d656d62657220697320696e61637469766556657374696e673a3a636c61696d546f6b656e733a20416d6f756e74206f766572666c6f7756657374696e673a3a5f6361636865556e636c61696d65643a2041646420616d6f756e74206f766572666c6f777356657374696e673a3a5f7772697465436865636b706f696e743a20426c6f636b206e756d6265722065786365656473203332206269747356657374696e673a3a7472616e736665723a20426c6f636b206e756d62657220657863656564732033322062697473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657256657374696e673a3a5f64697361626c654d656d6265723a2042616c616e636552656d61696e646572206f766572666c6f7756657374696e673a3a696e637265617365506572736f6e616c4475726174696f6e543a204c657373207468616e206475726174696f6e5456657374696e673a3a636c61696d546f6b656e733a2055736572206e6f742061637469766556657374696e673a3a5f636c61696d566f7465733a206c6173744d656d62657241646a7573746564566f746573206f766572666c6f7756657374696e673a3a696e6372656173654475726174696f6e543a20546f6f20736d616c6c206475726174696f6e53616665436173743a2076616c756520646f65736e27742066697420696e203332206269747356657374696e673a3a5f64697361626c654d656d6265723a2041646a7573746564566f74657320756e646572666c6f7756657374696e673a3a5f64697361626c654d656d6265723a20546865206d656d62657220697320696e61637469766556657374696e673a3a636c61696d546f6b656e733a204e6f7468696e6720746f20636c61696d56657374696e673a3a636c61696d566f7465733a204e6f7468696e6720746f20636c61696d56657374696e673a3a5f636c61696d566f7465733a2061646a7573746564566f74657320756e646572666c6f7756657374696e673a3a696e637265617365506572736f6e616c4475726174696f6e543a20546f6f20736d616c6c206475726174696f6e56657374696e673a3a636c61696d566f7465733a2055736572206e6f742061637469766556657374696e673a3a7472616e736665723a20546f206164647265737320686173206265656e20616c72656164792075736564a2646970667358221220eaafb7baeaef9b9510dd075b283935e85a800747c23315a010c41acccc70255264736f6c634300060c003356657374696e673a20496e76616c696420616d6f756e7420706572206d656d62657256657374696e673a20526571756972657320737461727456203c2073746172745456657374696e673a204d697373696e6720737570706c79206f662074686520746f6b656e00000000000000000000000038e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca1000000000000000000000000000000000000000000000000000000005f7519840000000000000000000000000000000000000000000000000000000001e19140000000000000000000000000000000000000000000000000000000006065e2240000000000000000000000000000000000000000000000000000000002d259e0000000000000000000000000000000000000000000000a968163f0a57b400000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102485760003560e01c80638c5fcdda1161013b578063ca28f0d0116100b8578063ec77ad251161007c578063ec77ad25146106e6578063edad62ce146107a4578063f1127ed8146107ac578063f2fde38b14610806578063fc0c546a1461082c57610248565b8063ca28f0d0146105fe578063d1a8c91b14610624578063df8de3e714610692578063e66907ac146106b8578063e6c2e94d146106de57610248565b8063a8b7d824116100ff578063a8b7d8241461056d578063a94f0b8314610575578063ac1f80691461059b578063ac2e4ef9146105a3578063ad93b23b146105c957610248565b80638c5fcdda146104bd5780638da5cb5b146104e3578063924d8cd214610507578063991007dc146105245780639ad1c55d1461054a57610248565b806356cb9c06116101c95780636e4558f01161018d5780636e4558f0146103fe5780636fcfff4514610424578063715018a614610463578063782d6fe11461046b578063855910871461049757610248565b806356cb9c061461037e5780635918ba79146103865780635cfa7d02146103ac5780635e6a1dd8146103b45780636947d790146103d857610248565b806331f5ee7b1161021057806331f5ee7b1461031e578063380b8e4a1461034a5780633c1d2f5e1461036657806351771f401461036e578063544c7f1f1461037657610248565b806308ae4b0c1461024d57806311aee380146102b15780631a695230146102cb578063286f89f5146102f35780632cfb06fc146102fb575b600080fd5b6102736004803603602081101561026357600080fd5b50356001600160a01b0316610834565b604080519515158652931515602086015263ffffffff909216848401526001600160601b039081166060850152166080830152519081900360a00190f35b6102b961087c565b60408051918252519081900360200190f35b6102f1600480360360208110156102e157600080fd5b50356001600160a01b0316610882565b005b6102b9611013565b6102b96004803603604081101561031157600080fd5b5080359060200135611019565b6102b96004803603604081101561033457600080fd5b50803590602001356001600160a01b031661107a565b610352611180565b604080519115158252519081900360200190f35b610352611189565b6102b96111b0565b6103526111d4565b6103526111fb565b6102f16004803603602081101561039c57600080fd5b50356001600160a01b0316611222565b6102b9611290565b6103bc6112b4565b604080516001600160601b039092168252519081900360200190f35b6102f1600480360360208110156103ee57600080fd5b50356001600160a01b03166112d8565b6102b96004803603602081101561041457600080fd5b50356001600160a01b0316611450565b61044a6004803603602081101561043a57600080fd5b50356001600160a01b03166114ed565b6040805163ffffffff9092168252519081900360200190f35b6102f1611505565b6103bc6004803603604081101561048157600080fd5b506001600160a01b0381351690602001356115b1565b6102b9600480360360208110156104ad57600080fd5b50356001600160a01b031661189b565b6102f1600480360360208110156104d357600080fd5b50356001600160a01b0316611915565b6104eb611b40565b604080516001600160a01b039092168252519081900360200190f35b6102f16004803603602081101561051d57600080fd5b5035611b4f565b6102b96004803603602081101561053a57600080fd5b50356001600160a01b0316611d05565b6102b96004803603604081101561056057600080fd5b5080359060200135611db7565b6102b9611e4b565b6104eb6004803603602081101561058b57600080fd5b50356001600160a01b0316611e51565b6102b9611e7c565b6102b9600480360360208110156105b957600080fd5b50356001600160a01b0316611ea0565b6102b9600480360360a08110156105df57600080fd5b5080359060208101359060408101359060608101359060800135611ed5565b6104eb6004803603602081101561061457600080fd5b50356001600160a01b0316611f3a565b6102f16004803603602081101561063a57600080fd5b810190602081018135600160201b81111561065457600080fd5b82018360208201111561066657600080fd5b803590602001918460208302840111600160201b8311171561068757600080fd5b509092509050611f55565b6102f1600480360360208110156106a857600080fd5b50356001600160a01b0316612123565b6102b9600480360360208110156106ce57600080fd5b50356001600160a01b0316612474565b6102b96124f3565b6102f1600480360360408110156106fc57600080fd5b810190602081018135600160201b81111561071657600080fd5b82018360208201111561072857600080fd5b803590602001918460208302840111600160201b8311171561074957600080fd5b919390929091602081019035600160201b81111561076657600080fd5b82018360208201111561077857600080fd5b803590602001918460208302840111600160201b8311171561079957600080fd5b509092509050612517565b6102f1612612565b6107de600480360360408110156107c257600080fd5b5080356001600160a01b0316906020013563ffffffff1661261d565b6040805163ffffffff90931683526001600160601b0390911660208301528051918290030190f35b6102f16004803603602081101561081c57600080fd5b50356001600160a01b0316612652565b6104eb612754565b60046020526000908152604090205460ff8082169161010081049091169063ffffffff62010000820416906001600160601b03600160301b8204811691600160901b90041685565b60015481565b61088a6136a7565b5033600090815260046020908152604091829020825160a081018452905460ff8082161515835261010082041615159282019290925263ffffffff62010000830416928101929092526001600160601b03600160301b820481166060840152600160901b9091041660808201526108ff6136a7565b506001600160a01b038216600090815260046020908152604091829020825160a081018452905460ff8082161515835261010082041615159282019290925263ffffffff62010000830416818401526001600160601b03600160301b83048116606080840191909152600160901b909304166080808301919091528401519184015192840151845191939115156001146109ca5760405162461bcd60e51b815260040180806020018281038252602a815260200180613a29602a913960400191505060405180910390fd5b835115610a085760405162461bcd60e51b815260040180806020018281038252602f8152602001806136ed602f913960400191505060405180910390fd5b602084015115610a495760405162461bcd60e51b8152600401808060200182810382526033815260200180613d966033913960400191505060405180910390fd5b6001600160a01b03861660009081526006602052604090205463ffffffff1615610aa45760405162461bcd60e51b81526004018080602001828103825260368152602001806138636036913960400191505060405180910390fd5b6040518060a00160405280600015158152602001600115158152602001600063ffffffff16815260200160006001600160601b0316815260200160006001600160601b031681525060046000336001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548163ffffffff021916908363ffffffff16021790555060608201518160000160066101000a8154816001600160601b0302191690836001600160601b0316021790555060808201518160000160126101000a8154816001600160601b0302191690836001600160601b031602179055509050506040518060a001604052806001151581526020016000151581526020018263ffffffff168152602001836001600160601b03168152602001846001600160601b031681525060046000886001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548163ffffffff021916908363ffffffff16021790555060608201518160000160066101000a8154816001600160601b0302191690836001600160601b0316021790555060808201518160000160126101000a8154816001600160601b0302191690836001600160601b03160217905550905050600060076000336001600160a01b03166001600160a01b0316815260200190815260200160002060009054906101000a90046001600160a01b031690506000610d64436040518060600160405280602f8152602001613add602f91396127d2565b604080518082018252600080825260208083018281526001600160a01b03808f16845260058352858420848052909252939091209151825493516001600160601b0316600160201b02640100000000600160801b031963ffffffff9290921663ffffffff1990951694909417169290921790559091508216610eac576000610e0d886060015189608001516040518060600160405280602c8152602001613777602c913961286c565b9050610e1933826128d9565b60408051808201825263ffffffff80851682526001600160601b0393841660208084019182526001600160a01b038e16600081815260058352868120600182528352868120955186549451909816600160201b02640100000000600160801b03199890951663ffffffff199485161797909716939093179093559084526006909152912080549091166002179055610ed3565b6001600160a01b0388166000908152600660205260409020805463ffffffff191660011790555b3360008181526007602052604080822080546001600160a01b038d811685529284208054939091166001600160a01b0319938416179055929091528154169055610f1b6136a7565b506001600160a01b03808916600081815260046020908152604091829020825160a081018452905460ff8082161515835261010082041615158284015263ffffffff62010000820416828501526001600160601b03600160301b82048116606080850191909152600160901b9092048116608084015284518b82168152908c1693810193909352948716828401529151919333927f89880baf02655bce35a9ff5e1df9c8e582f6311e4889ca26667c1e3f889fc0fe9281900390910190a36000610ffa82606001516001600160601b0316610ff584612980565b611db7565b90506110078a838361298e565b50505050505050505050565b60025481565b6000611071427f000000000000000000000000000000000000000000000000000000006065e2247f000000000000000000000000000000000000000000000a968163f0a57b4000006001600160601b03168587611ed5565b90505b92915050565b60006110846136a7565b506001600160a01b038216600090815260046020908152604091829020825160a081018452905460ff8082161515808452610100830490911615159383019390935263ffffffff62010000820416938201939093526001600160601b03600160301b840481166060830152600160901b909304909216608083015261110d576000915050611074565b611178847f000000000000000000000000000000000000000000000000000000006065e2247f000000000000000000000000000000000000000000000a968163f0a57b4000006001600160601b031661116585612c1c565b85608001516001600160601b0316611ed5565b949350505050565b60035442101590565b7f000000000000000000000000000000000000000000000000000000005f75198442101590565b7f0000000000000000000000000000000000000000000000000000000001e1914081565b7f000000000000000000000000000000000000000000000000000000006065e22442101590565b7f000000000000000000000000000000000000000000000000000000006156aac442101590565b61122a612c39565b6001600160a01b031661123b611b40565b6001600160a01b031614611284576040805162461bcd60e51b81526020600482018190526024820152600080516020613b2d833981519152604482015290519081900360640190fd5b61128d81612c3d565b50565b7f000000000000000000000000000000000000000000000000000000005f75198481565b7f000000000000000000000000000000000000000000000a968163f0a57b40000081565b6112e06136a7565b506001600160a01b038116600090815260046020908152604091829020825160a081018452905460ff8082161515808452610100830490911615159383019390935263ffffffff62010000820416938201939093526001600160601b03600160301b840481166060830152600160901b90930490921660808301526001146113995760405162461bcd60e51b8152600401808060200182810382526024815260200180613d726024913960400191505060405180910390fd5b60006113a482612980565b905060006113bf83606001516001600160601b031683611db7565b9050814211156114005760405162461bcd60e51b815260040180806020018281038252602b8152602001806138ed602b913960400191505060405180910390fd5b6000811161143f5760405162461bcd60e51b8152600401808060200182810382526025815260200180613cea6025913960400191505060405180910390fd5b61144a84848361298e565b50505050565b6001600160a01b0381166000908152600460205260408120805460ff1661147b5760009150506114e8565b80546040805160a08101825260ff808416151582526101008404161515602082015263ffffffff62010000840416918101919091526001600160601b03600160301b8304811660608301819052600160901b9093041660808201526114e49190610ff590612980565b9150505b919050565b60066020526000908152604090205463ffffffff1681565b61150d612c39565b6001600160a01b031661151e611b40565b6001600160a01b031614611567576040805162461bcd60e51b81526020600482018190526024820152600080516020613b2d833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60004382106115f15760405162461bcd60e51b815260040180806020018281038252602a8152602001806139d3602a913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205463ffffffff166116186136a7565b506001600160a01b038416600090815260046020908152604091829020825160a081018452905460ff80821615158352610100820416151592820183905263ffffffff62010000820416938201939093526001600160601b03600160301b840481166060830152600160901b9093049092166080830152600114156116a257600092505050611074565b6116ab81612980565b4211806116b9575060035442115b156116c957600092505050611074565b63ffffffff8216158061170457506001600160a01b038516600090815260056020908152604080832083805290915290205463ffffffff1684105b1561171457600092505050611074565b6001600160a01b038516600090815260056020908152604080832063ffffffff60001987018116855292529091205416841061179157506001600160a01b03841660009081526005602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b03169050611074565b600060001983015b8163ffffffff168163ffffffff16111561185557600282820363ffffffff160481036117c36136d5565b506001600160a01b038816600090815260056020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b0316918101919091529088141561183057602001519550611074945050505050565b805163ffffffff168811156118475781935061184e565b6001820392505b5050611799565b506001600160a01b038616600090815260056020908152604080832063ffffffff909416835292905220546001600160601b03600160201b909104169250505092915050565b6001600160a01b03811660009081526006602052604081205463ffffffff16806118c6576000611905565b6001600160a01b0383166000908152600560209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03165b6001600160601b03169392505050565b61191d6136a7565b5033600090815260046020908152604091829020825160a081018452905460ff8082161515835261010082041615159282019290925263ffffffff62010000830416928101929092526001600160601b03600160301b820481166060840152600160901b9091041660808201526001600160a01b0382166119cf5760405162461bcd60e51b81526004018080602001828103825260338152602001806139456033913960400191505060405180910390fd5b80511515600114611a115760405162461bcd60e51b815260040180806020018281038252602d8152602001806137d7602d913960400191505060405180910390fd5b6000611a1c33611e51565b9050806001600160a01b0316836001600160a01b03161415611a6f5760405162461bcd60e51b815260040180806020018281038252603981526020018061382a6039913960400191505060405180910390fd5b33600090815260076020908152604080832080546001600160a01b0319166001600160a01b03881617905560608581015160808701518351928301909352602c808352611ac694919392916137779083013961286c565b9050611ad282826128d9565b611adc8482612f70565b816001600160a01b0316846001600160a01b0316336001600160a01b03167fb62a174a641bf478889ef54cf579217791f8ef54d7cfacc0924700208519651c8460405180826001600160601b0316815260200191505060405180910390a450505050565b6000546001600160a01b031690565b611b57612c39565b6001600160a01b0316611b68611b40565b6001600160a01b031614611bb1576040805162461bcd60e51b81526020600482018190526024820152600080516020613b2d833981519152604482015290519081900360640190fd5b6003544210611bf15760405162461bcd60e51b815260040180806020018281038252602b81526020018061374c602b913960400191505060405180910390fd5b6002548111611c315760405162461bcd60e51b815260040180806020018281038252602e815260200180613c11602e913960400191505060405180910390fd5b62ed4e0060025482031115611c775760405162461bcd60e51b815260040180806020018281038252602c8152602001806139fd602c913960400191505060405180910390fd5b6002805460035491839055906000611caf7f000000000000000000000000000000000000000000000000000000006065e22485612778565b600381905560408051858152602081018590528082018790526060810183905290519192507f5a6734ec95556a026d02eb57f42144a068a58a7fd3d700549bd22ba371d1a920919081900360800190a150505050565b6000611d0f6136a7565b506001600160a01b038216600090815260046020908152604091829020825160a081018452905460ff8082161515808452610100830490911615159383019390935263ffffffff62010000820416938201939093526001600160601b03600160301b840481166060830152600160901b9093049092166080830152611d985760009150506114e8565b6114e481608001516001600160601b0316611db283612c1c565b611019565b600081421180611dc8575060035442115b15611dd557506000611074565b611071427f000000000000000000000000000000000000000000000000000000005f7519847f000000000000000000000000000000000000000000000a968163f0a57b4000006001600160601b03167f0000000000000000000000000000000000000000000000000000000001e1914087611ed5565b60035481565b6001600160a01b038082166000908152600760205260408120549091168061107457829150506114e8565b7f000000000000000000000000000000000000000000000000000000006065e22481565b6000611074611eae83612474565b7f000000000000000000000000000000000000000000000000000000006065e22490612778565b6000848611611ee657506000611f31565b6000611ef28685612778565b90506000818811611f035787611f05565b815b90506000611f1f86611f198a85038a613002565b9061305b565b9050611f2b818661309d565b93505050505b95945050505050565b6007602052600090815260409020546001600160a01b031681565b611f5d612c39565b6001600160a01b0316611f6e611b40565b6001600160a01b031614611fb7576040805162461bcd60e51b81526020600482018190526024820152600080516020613b2d833981519152604482015290519081900360640190fd5b6001541561200c576040805162461bcd60e51b815260206004820152601c60248201527f56657374696e673a20416c726561647920696e697469616c697a656400000000604482015290519081900360640190fd5b808061205f576040805162461bcd60e51b815260206004820152601a60248201527f56657374696e673a20456d707479206d656d626572206c697374000000000000604482015290519081900360640190fd5b600181905560005b818110156120ba5760016004600086868581811061208157fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101612067565b507f666d383ccf45e51cbf9b64e4e30bd3fd7ca860204a781574e5cf41ba71a0a877838360405180806020018281038252848482818152602001925060200280828437600083820152604051601f909101601f19169092018290039550909350505050a1505050565b61212b6136a7565b5033600090815260046020908152604091829020825160a081018452905460ff8082161515808452610100830490911615159383019390935263ffffffff62010000820416938201939093526001600160601b03600160301b840481166060830152600160901b90930490921660808301526001146121db5760405162461bcd60e51b8152600401808060200182810382526025815260200180613bb66025913960400191505060405180910390fd5b60006121e682612c1c565b9050600061220183608001516001600160601b031683611019565b9050600081116122425760405162461bcd60e51b8152600401808060200182810382526026815260200180613cc46026913960400191505060405180910390fd5b600061226682604051806060016040528060258152602001613a53602591396130df565b9050600061229185608001518360405180606001604052806030815260200161371c60309139613134565b33600090815260046020526040812080546bffffffffffffffffffffffff60901b1916600160901b6001600160601b038516021790559091506122f47f000000000000000000000000000000000000000000000000000000006065e22486612778565b9050600061230f87606001516001600160601b031683611db7565b905060035442116123255761232533888361298e565b604080516001600160601b0380871682528516602082015280820183905290516001600160a01b038a169133917fe3a16c28e67957e6b807157ed70c0f99a5a5df25995ebc04ec990ecfe9017dea9181900360600190a37f00000000000000000000000038e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca16001600160a01b031663a9059cbb89876040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156123f357600080fd5b505af1158015612407573d6000803e3d6000fd5b505050506040513d602081101561241d57600080fd5b505161246a576040805162461bcd60e51b8152602060048201526017602482015276115490cc8c0e8e9d1c985b9cd9995c8e8819985a5b1959604a1b604482015290519081900360640190fd5b5050505050505050565b6001600160a01b0381166000908152600460209081526040808320815160a081018352905460ff8082161515835261010082041615159382019390935263ffffffff62010000840416918101919091526001600160601b03600160301b830481166060830152600160901b909204909116608082015261107490612c1c565b7f000000000000000000000000000000000000000000000000000000006156aac481565b61251f612c39565b6001600160a01b0316612530611b40565b6001600160a01b031614612579576040805162461bcd60e51b81526020600482018190526024820152600080516020613b2d833981519152604482015290519081900360640190fd5b828181146125c0576040805162461bcd60e51b815260206004820152600f60248201526e0988a9c8ea890be9a92a69a82a8869608b1b604482015290519081900360640190fd5b60005b8181101561260a576126028686838181106125da57fe5b905060200201356001600160a01b03168585848181106125f657fe5b9050602002013561319e565b6001016125c3565b505050505050565b61261b33612c3d565b565b600560209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b61265a612c39565b6001600160a01b031661266b611b40565b6001600160a01b0316146126b4576040805162461bcd60e51b81526020600482018190526024820152600080516020613b2d833981519152604482015290519081900360640190fd5b6001600160a01b0381166126f95760405162461bcd60e51b81526004018080602001828103825260268152602001806138046026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b7f00000000000000000000000038e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca181565b600082820183811015611071576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081600160201b84106128645760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612829578181015183820152602001612811565b50505050905090810190601f1680156128565780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b509192915050565b6000836001600160601b0316836001600160601b0316111582906128d15760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612829578181015183820152602001612811565b505050900390565b6001600160a01b03821660009081526006602052604081205463ffffffff169081612905576000612944565b6001600160a01b0384166000908152600560209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b9050600061296b82856040518060600160405280602e81526020016139a5602e913961286c565b9050612979858484846133f3565b5050505050565b6000611074611eae83612c1c565b60008115612a2e5760006129ba83604051806060016040528060258152602001613899602591396130df565b90506129e38460600151826040518060600160405280602f81526020016138be602f9139613134565b6001600160a01b0386166000908152600460205260409020805471ffffffffffffffffffffffff0000000000001916600160301b6001600160601b038416021790559150612a359050565b5060608201515b6000612a6284606001518560800151604051806060016040528060368152602001613bdb6036913961286c565b90506000612ac48360046000896001600160a01b03166001600160a01b0316815260200190815260200160002060000160129054906101000a90046001600160601b03166040518060600160405280602d8152602001613d0f602d913961286c565b90506000612ad187611e51565b90506000836001600160601b0316836001600160601b03161115612b2357612b1283856040518060600160405280602d8152602001613978602d913961286c565b9050612b1e8282612f70565b612b6c565b826001600160601b0316846001600160601b03161115612b6c57612b6084846040518060600160405280602d8152602001613918602d913961286c565b9050612b6c82826128d9565b6060808801516080808a01516001600160a01b038c81166000818152600460209081526040918290205482516001600160601b03988916815295881691860191909152868d1685830152600160901b90048616968401969096528985169383019390935287841660a083015292851660c082015292519185169290917fa5f76077cbbfd3516304bdaf271d57fc3b3a07a9c7e457d1d71a608ff08f88579181900360e00190a35050505050505050565b604081015160009063ffffffff16806110745750506002546114e8565b3390565b612c456136a7565b506001600160a01b038116600090815260046020908152604091829020825160a081018452905460ff8082161515808452610100830490911615159383019390935263ffffffff62010000820416938201939093526001600160601b03600160301b840481166060830152600160901b9093049092166080830152600114612cfe5760405162461bcd60e51b815260040180806020018281038252602f815260200180613c95602f913960400191505060405180910390fd5b6001600160a01b038083166000908152600460209081526040808320805460ff19169055600782528083205460069092529091205491169063ffffffff168015801590612d5357506001600160a01b03821615155b8015612d715750836001600160a01b0316826001600160a01b031614155b15612dc0576000612da384606001518560800151604051806060016040528060308152602001613c656030913961286c565b90506001600160601b03811615612dbe57612dbe83826128d9565b505b6001600160a01b038416600090815260076020908152604080832080546001600160a01b031916905560808601518151606081019092526032808352612e30937f000000000000000000000000000000000000000000000a968163f0a57b400000939190613b4d9083013961286c565b6001600160601b031690507f00000000000000000000000038e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca16001600160a01b031663a9059cbb6001836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015612eb357600080fd5b505af1158015612ec7573d6000803e3d6000fd5b505050506040513d6020811015612edd57600080fd5b5051612f2a576040805162461bcd60e51b8152602060048201526017602482015276115490cc8c0e8e9d1c985b9cd9995c8e8819985a5b1959604a1b604482015290519081900360640190fd5b6040805182815290516001600160a01b038716917fb45a457e995cc15eb8d3fa8f902b0ec290524ef773435e826c873e688ff6598a919081900360200190a25050505050565b6001600160a01b03821660009081526006602052604081205463ffffffff169081612f9c576000612fdb565b6001600160a01b0384166000908152600560209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b9050600061296b82856040518060600160405280602e8152602001613a78602e9139613134565b60008261301157506000611074565b8282028284828161301e57fe5b04146110715760405162461bcd60e51b8152600401808060200182810382526021815260200180613b0c6021913960400191505060405180910390fd5b600061107183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506135a8565b600061107183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061360d565b600081600160601b84106128645760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612829578181015183820152602001612811565b6000838301826001600160601b0380871690831610156131955760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612829578181015183820152602001612811565b50949350505050565b6131a66136a7565b506001600160a01b0382166000908152600460209081526040808320815160a081018352905460ff8082161515835261010082041615159382019390935263ffffffff62010000840416918101919091526001600160601b03600160301b830481166060830152600160901b90920490911660808201529061322782612c1c565b90508083116132675760405162461bcd60e51b8152600401808060200182810382526036815260200180613d3c6036913960400191505060405180910390fd5b62ed4e0081840311156132ab5760405162461bcd60e51b81526004018080602001828103825260348152602001806137a36034913960400191505060405180910390fd5b6002548310156132ec5760405162461bcd60e51b8152600401808060200182810382526037815260200180613b7f6037913960400191505060405180910390fd5b60006133187f000000000000000000000000000000000000000000000000000000006065e22483612778565b90506133238461365f565b6001600160a01b0386166000908152600460205260408120805465ffffffff000019166201000063ffffffff9485160217905590613385907f000000000000000000000000000000000000000000000000000000006065e22490879061277816565b60408086015181518681526020810186905263ffffffff90911681830152606081018890526080810183905290519192506001600160a01b038816917fb317eca0b8b70522ba0658df4adfb0df252dcd149ff175057666109b8df2b3be9181900360a00190a2505050505050565b600061341743604051806060016040528060378152602001613aa6603791396127d2565b905060008463ffffffff1611801561346057506001600160a01b038516600090815260056020908152604080832063ffffffff6000198901811685529252909120548282169116145b156134ba576001600160a01b0385166000908152600560209081526040808320600019880163ffffffff16845290915290208054640100000000600160801b031916600160201b6001600160601b03851602179055613554565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600583528781208c871682528352878120965187549451909516600160201b02640100000000600160801b031995871663ffffffff19958616179590951694909417909555938252600690935292909220805460018801909316929091169190911790555b604080516001600160601b0380861682528416602082015281516001600160a01b038816927ff6ab64320c70b20a37e43daa63d22b9c5ac61b4967b2faed4e705aafde54baaa928290030190a25050505050565b600081836135f75760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612829578181015183820152602001612811565b50600083858161360357fe5b0495945050505050565b600081848411156128d15760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612829578181015183820152602001612811565b6000600160201b82106136a35760405162461bcd60e51b8152600401808060200182810382526026815260200180613c3f6026913960400191505060405180910390fd5b5090565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915290565b60408051808201909152600080825260208201529056fe56657374696e673a3a7472616e736665723a20546f206164647265737320697320616c72656164792061637469766556657374696e673a3a636c61696d546f6b656e733a204e6577416c7265616479436c61696d6564206f766572666c6f7756657374696e673a3a696e6372656173654475726174696f6e543a2056657374696e67206973206f76657256657374696e673a3a636c61696d566f7465733a2041646a7573746564566f74657320756e646572666c6f7756657374696e673a3a696e637265617365506572736f6e616c4475726174696f6e543a20546f6f20626967206475726174696f6e56657374696e673a3a64656c6567617465566f7465733a206d73672e73656e646572206e6f74206163746976654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737356657374696e673a3a64656c6567617465566f7465733a20416c72656164792064656c65676174656420746f2074686973206164647265737356657374696e673a3a7472616e736665723a20546f206164647265737320616c726561647920686164206120636865636b706f696e7456657374696e673a3a5f636c61696d566f7465733a20416d6f756e74206f766572666c6f7756657374696e673a3a636c61696d566f7465733a206e6577416c7265616479436c61696d6564206f766572666c6f7756657374696e673a3a636c61696d566f7465733a20566f74652076657374696e672068617320656e64656456657374696e673a3a5f636c61696d566f7465733a204e65676174697665206469666620756e646572666c6f7756657374696e673a3a64656c6567617465566f7465733a2043616e27742064656c656761746520746f2030206164647265737356657374696e673a3a5f636c61696d566f7465733a20506f736974697665206469666620756e646572666c6f7756657374696e673a3a5f6361636865556e636c61696d65643a2053756220616d6f756e74206f766572666c6f777356657374696e673a3a6765745072696f72566f7465733a204e6f74207965742064657465726d696e656456657374696e673a3a696e6372656173654475726174696f6e543a20546f6f20626967206475726174696f6e56657374696e673a3a7472616e736665723a2046726f6d206d656d62657220697320696e61637469766556657374696e673a3a636c61696d546f6b656e733a20416d6f756e74206f766572666c6f7756657374696e673a3a5f6361636865556e636c61696d65643a2041646420616d6f756e74206f766572666c6f777356657374696e673a3a5f7772697465436865636b706f696e743a20426c6f636b206e756d6265722065786365656473203332206269747356657374696e673a3a7472616e736665723a20426c6f636b206e756d62657220657863656564732033322062697473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657256657374696e673a3a5f64697361626c654d656d6265723a2042616c616e636552656d61696e646572206f766572666c6f7756657374696e673a3a696e637265617365506572736f6e616c4475726174696f6e543a204c657373207468616e206475726174696f6e5456657374696e673a3a636c61696d546f6b656e733a2055736572206e6f742061637469766556657374696e673a3a5f636c61696d566f7465733a206c6173744d656d62657241646a7573746564566f746573206f766572666c6f7756657374696e673a3a696e6372656173654475726174696f6e543a20546f6f20736d616c6c206475726174696f6e53616665436173743a2076616c756520646f65736e27742066697420696e203332206269747356657374696e673a3a5f64697361626c654d656d6265723a2041646a7573746564566f74657320756e646572666c6f7756657374696e673a3a5f64697361626c654d656d6265723a20546865206d656d62657220697320696e61637469766556657374696e673a3a636c61696d546f6b656e733a204e6f7468696e6720746f20636c61696d56657374696e673a3a636c61696d566f7465733a204e6f7468696e6720746f20636c61696d56657374696e673a3a5f636c61696d566f7465733a2061646a7573746564566f74657320756e646572666c6f7756657374696e673a3a696e637265617365506572736f6e616c4475726174696f6e543a20546f6f20736d616c6c206475726174696f6e56657374696e673a3a636c61696d566f7465733a2055736572206e6f742061637469766556657374696e673a3a7472616e736665723a20546f206164647265737320686173206265656e20616c72656164792075736564a2646970667358221220eaafb7baeaef9b9510dd075b283935e85a800747c23315a010c41acccc70255264736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000038e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca1000000000000000000000000000000000000000000000000000000005f7519840000000000000000000000000000000000000000000000000000000001e19140000000000000000000000000000000000000000000000000000000006065e2240000000000000000000000000000000000000000000000000000000002d259e0000000000000000000000000000000000000000000000a968163f0a57b400000
-----Decoded View---------------
Arg [0] : _tokenAddress (address): 0x38e4adB44ef08F22F5B5b76A8f0c2d0dCbE7DcA1
Arg [1] : _startV (uint256): 1601509764
Arg [2] : _durationV (uint256): 31560000
Arg [3] : _startT (uint256): 1617289764
Arg [4] : _durationT (uint256): 47340000
Arg [5] : _amountPerMember (uint96): 50000000000000000000000
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 00000000000000000000000038e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca1
Arg [1] : 000000000000000000000000000000000000000000000000000000005f751984
Arg [2] : 0000000000000000000000000000000000000000000000000000000001e19140
Arg [3] : 000000000000000000000000000000000000000000000000000000006065e224
Arg [4] : 0000000000000000000000000000000000000000000000000000000002d259e0
Arg [5] : 000000000000000000000000000000000000000000000a968163f0a57b400000
Deployed Bytecode Sourcemap
16642:30261:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20093:41;;;;;;;;;;;;;;;;-1:-1:-1;20093:41:0;-1:-1:-1;;;;;20093:41:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20093:41:0;;;;;;;;;;;;;;;;;;;;;19722:26;;;:::i;:::-;;;;;;;;;;;;;;;;42384:2152;;;;;;;;;;;;;;;;-1:-1:-1;42384:2152:0;-1:-1:-1;;;;;42384:2152:0;;:::i;:::-;;19935:24;;;:::i;30531:206::-;;;;;;;;;;;;;;;;-1:-1:-1;30531:206:0;;;;;;;:::i;27250:412::-;;;;;;;;;;;;;;;;-1:-1:-1;27250:412:0;;;;;;-1:-1:-1;;;;;27250:412:0;;:::i;23578:104::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;22814:107;;;:::i;19430:34::-;;;:::i;23322:108::-;;;:::i;23067:103::-;;;:::i;35298:95::-;;;;;;;;;;;;;;;;-1:-1:-1;35298:95:0;-1:-1:-1;;;;;35298:95:0;;:::i;19337:31::-;;;:::i;19833:39::-;;;:::i;:::-;;;;-1:-1:-1;;;;;19833:39:0;;;;;;;;;;;;;;37059:523;;;;;;;;;;;;;;;;-1:-1:-1;37059:523:0;-1:-1:-1;;;;;37059:523:0;;:::i;29827:321::-;;;;;;;;;;;;;;;;-1:-1:-1;29827:321:0;-1:-1:-1;;;;;29827:321:0;;:::i;20343:48::-;;;;;;;;;;;;;;;;-1:-1:-1;20343:48:0;-1:-1:-1;;;;;20343:48:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;8885:148;;;:::i;25331:1488::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;25331:1488:0;;;;;;;;:::i;24487:207::-;;;;;;;;;;;;;;;;-1:-1:-1;24487:207:0;-1:-1:-1;;;;;24487:207:0;;:::i;41313:810::-;;;;;;;;;;;;;;;;-1:-1:-1;41313:810:0;-1:-1:-1;;;;;41313:810:0;;:::i;8234:87::-;;;:::i;:::-;;;;-1:-1:-1;;;;;8234:87:0;;;;;;;;;;;;;;33001:611;;;;;;;;;;;;;;;;-1:-1:-1;33001:611:0;;:::i;29241:294::-;;;;;;;;;;;;;;;;-1:-1:-1;29241:294:0;-1:-1:-1;;;;;29241:294:0;;:::i;31207:297::-;;;;;;;;;;;;;;;;-1:-1:-1;31207:297:0;;;;;;;:::i;20020:19::-;;;:::i;23877:244::-;;;;;;;;;;;;;;;;-1:-1:-1;23877:244:0;-1:-1:-1;;;;;23877:244:0;;:::i;19611:31::-;;;:::i;27938:131::-;;;;;;;;;;;;;;;;-1:-1:-1;27938:131:0;-1:-1:-1;;;;;27938:131:0;;:::i;32081:645::-;;;;;;;;;;;;;;;;-1:-1:-1;32081:645:0;;;;;;;;;;;;;;;;;;;;;;:::i;20430:50::-;;;;;;;;;;;;;;;;-1:-1:-1;20430:50:0;-1:-1:-1;;;;;20430:50:0;;:::i;22269:395::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;22269:395:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;22269:395:0;;;;;;;;;;-1:-1:-1;22269:395:0;;-1:-1:-1;22269:395:0;-1:-1:-1;22269:395:0;:::i;40046:1127::-;;;;;;;;;;;;;;;;-1:-1:-1;40046:1127:0;-1:-1:-1;;;;;40046:1127:0;;:::i;28365:137::-;;;;;;;;;;;;;;;;-1:-1:-1;28365:137:0;-1:-1:-1;;;;;28365:137:0;;:::i;19513:29::-;;;:::i;33893:378::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;33893:378:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;33893:378:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;33893:378:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;33893:378:0;;;;;;;;;;-1:-1:-1;33893:378:0;;-1:-1:-1;33893:378:0;-1:-1:-1;33893:378:0;:::i;36758:78::-;;;:::i;20211:68::-;;;;;;;;;;;;;;;;-1:-1:-1;20211:68:0;;-1:-1:-1;;;;;20211:68:0;;;;;;;;:::i;:::-;;;;;;;;;;-1:-1:-1;;;;;20211:68:0;;;;;;;;;;;;;;;;9188:244;;;;;;;;;;;;;;;;-1:-1:-1;9188:244:0;-1:-1:-1;;;;;9188:244:0;;:::i;19239:30::-;;;:::i;20093:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;20093:41:0;;;;;-1:-1:-1;;;20093:41:0;;;;:::o;19722:26::-;;;;:::o;42384:2152::-;42431:18;;:::i;:::-;-1:-1:-1;42460:10:0;42452:19;;;;:7;:19;;;;;;;;;42431:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;42431:40:0;;;;;;;;-1:-1:-1;;;42431:40:0;;;;;;;;42478:16;;:::i;:::-;-1:-1:-1;;;;;;42497:12:0;;;;;;:7;:12;;;;;;;;;42478:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;42478:31:0;;;;;;;;;;;;-1:-1:-1;;;42478:31:0;;;;;;;;;;;;42548:25;;;42609:24;;;;42667:22;;;;42706:11;;42478:31;;42609:24;42706:19;;42478:31;42706:19;42698:74;;;;-1:-1:-1;;;42698:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42787:9;;:18;42779:78;;;;-1:-1:-1;;;42779:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42872:14;;;;:23;42864:87;;;;-1:-1:-1;;;42864:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42966:19:0;;;;;;:14;:19;;;;;;;;:24;42958:91;;;;-1:-1:-1;;;42958:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43080:155;;;;;;;;43104:5;43080:155;;;;;;43131:4;43080:155;;;;;;43226:1;43080:155;;;;;;43165:1;-1:-1:-1;;;;;43080:155:0;;;;;43197:1;-1:-1:-1;;;;;43080:155:0;;;;43058:7;:19;43066:10;-1:-1:-1;;;;;43058:19:0;-1:-1:-1;;;;;43058:19:0;;;;;;;;;;;;:177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43058:177:0;;;;;-1:-1:-1;;;;;43058:177:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43058:177:0;;;;;-1:-1:-1;;;;;43058:177:0;;;;;;;;;43257:208;;;;;;;;43281:4;43257:208;;;;;;43307:5;43257:208;;;;;;43440:17;43257:208;;;;;;43342:19;-1:-1:-1;;;;;43257:208:0;;;;;43392:20;-1:-1:-1;;;;;43257:208:0;;;;43242:7;:12;43250:3;-1:-1:-1;;;;;43242:12:0;-1:-1:-1;;;;;43242:12:0;;;;;;;;;;;;:223;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43242:223:0;;;;;-1:-1:-1;;;;;43242:223:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43242:223:0;;;;;-1:-1:-1;;;;;43242:223:0;;;;;;;;;43474:23;43500:15;:27;43516:10;-1:-1:-1;;;;;43500:27:0;-1:-1:-1;;;;;43500:27:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43500:27:0;43474:53;;43536:25;43564:71;43571:12;43564:71;;;;;;;;;;;;;;;;;:6;:71::i;:::-;43666:24;;;;;;;;-1:-1:-1;43666:24:0;;;;;;;;;;-1:-1:-1;;;;;43644:16:0;;;;;:11;:16;;;;;:19;;;;;;;;;;:46;;;;;;-1:-1:-1;;;;;43644:46:0;-1:-1:-1;;;43644:46:0;-1:-1:-1;;;;;;43666:24:0;43644:46;;;;-1:-1:-1;;43644:46:0;;;;;;;;;;;;;;43536:99;;-1:-1:-1;43701:29:0;;43697:403;;43741:20;43773:106;43779:4;:24;;;43805:4;:25;;;43773:106;;;;;;;;;;;;;;;;;:5;:106::i;:::-;43741:138;;43888:50;43912:10;43924:13;43888:23;:50::i;:::-;43969:45;;;;;;;;;;;;;;-1:-1:-1;;;;;43969:45:0;;;;;;;;;;-1:-1:-1;;;;;43947:16:0;;-1:-1:-1;43947:16:0;;;:11;:16;;;;;43964:1;43947:19;;;;;;;:67;;;;;;;;;-1:-1:-1;;;43947:67:0;-1:-1:-1;;;;;;43947:67:0;;;;-1:-1:-1;;43947:67:0;;;;;;;;;;;;;;;44023:19;;;:14;:19;;;;;:23;;;;;44045:1;44023:23;;;43697:403;;;-1:-1:-1;;;;;44069:19:0;;;;;;:14;:19;;;;;:23;;-1:-1:-1;;44069:23:0;44091:1;44069:23;;;43697:403;44147:10;44131:27;;;;:15;:27;;;;;;;;-1:-1:-1;;;;;44108:20:0;;;;;;;;:50;;44131:27;;;;-1:-1:-1;;;;;;44108:50:0;;;;;;44172:27;;;;44165:34;;;;;44208:22;;:::i;:::-;-1:-1:-1;;;;;;44233:12:0;;;;;;;:7;:12;;;;;;;;;44208:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;44208:37:0;;;;;;;;;;;;-1:-1:-1;;;44208:37:0;;;;;;;;;44259:85;;;;;;;;;;;;;;;;;;;;;;;;;;44208:37;;44268:10;;44259:85;;;;;;;;;;44353:13;44376:112;44413:8;:28;;;-1:-1:-1;;;;;44376:112:0;44456:29;44476:8;44456:19;:29::i;:::-;44376:17;:112::i;:::-;44353:135;;44497:33;44509:3;44514:8;44524:5;44497:11;:33::i;:::-;42384:2152;;;;;;;;;;:::o;19935:24::-;;;;:::o;30531:206::-;30625:7;30648:83;30661:15;30678:6;30686:15;-1:-1:-1;;;;;30648:83:0;30703:10;30715:15;30648:12;:83::i;:::-;30641:90;;30531:206;;;;;:::o;27250:412::-;27351:7;27367:20;;:::i;:::-;-1:-1:-1;;;;;;27390:16:0;;;;;;:7;:16;;;;;;;;;27367:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;27367:39:0;;;;;;;;-1:-1:-1;;;27367:39:0;;;;;;;;;;27413:53;;27457:1;27450:8;;;;;27413:53;27488:168;27511:12;27534:6;27551:15;-1:-1:-1;;;;;27488:168:0;27577:32;27602:6;27577:24;:32::i;:::-;27620:6;:27;;;-1:-1:-1;;;;;27488:168:0;:12;:168::i;:::-;27474:182;27250:412;-1:-1:-1;;;;27250:412:0:o;23578:104::-;23672:4;;23653:15;:23;;23578:104;:::o;22814:107::-;22909:6;22890:15;:25;;22814:107;:::o;19430:34::-;;;:::o;23322:108::-;23418:6;23399:15;:25;;23322:108;:::o;23067:103::-;23160:4;23141:15;:23;;23067:103;:::o;35298:95::-;8465:12;:10;:12::i;:::-;-1:-1:-1;;;;;8454:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8454:23:0;;8446:68;;;;;-1:-1:-1;;;8446:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8446:68:0;;;;;;;;;;;;;;;35364:23:::1;35379:7;35364:14;:23::i;:::-;35298:95:::0;:::o;19337:31::-;;;:::o;19833:39::-;;;:::o;37059:523::-;37108:20;;:::i;:::-;-1:-1:-1;;;;;;37131:12:0;;;;;;:7;:12;;;;;;;;;37108:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;37108:35:0;;;;;;;;-1:-1:-1;;;37108:35:0;;;;;;;;;;;37158:21;37150:70;;;;-1:-1:-1;;;37150:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37229:13;37245:27;37265:6;37245:19;:27::i;:::-;37229:43;;37279:13;37295:86;37332:6;:26;;;-1:-1:-1;;;;;37295:86:0;37373:5;37295:17;:86::i;:::-;37279:102;;37417:5;37398:15;:24;;37390:80;;;;-1:-1:-1;;;37390:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37493:1;37485:5;:9;37477:59;;;;-1:-1:-1;;;37477:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37545:31;37557:3;37562:6;37570:5;37545:11;:31::i;:::-;37059:523;;;;:::o;29827:321::-;-1:-1:-1;;;;;29943:16:0;;29903:7;29943:16;;;:7;:16;;;;;29970:13;;;;29966:53;;30010:1;30003:8;;;;;29966:53;30071:26;;30112:27;;;;;;;;;;;;;;;;30071:26;30112:27;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;30071:26:0;;;;30112:27;;;;;;-1:-1:-1;;;30112:27:0;;;;;;;;30034:108;;30071:26;30112:27;;:19;:27::i;30034:108::-;30027:115;;;29827:321;;;;:::o;20343:48::-;;;;;;;;;;;;;;;:::o;8885:148::-;8465:12;:10;:12::i;:::-;-1:-1:-1;;;;;8454:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8454:23:0;;8446:68;;;;;-1:-1:-1;;;8446:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8446:68:0;;;;;;;;;;;;;;;8992:1:::1;8976:6:::0;;8955:40:::1;::::0;-1:-1:-1;;;;;8976:6:0;;::::1;::::0;8955:40:::1;::::0;8992:1;;8955:40:::1;9023:1;9006:19:::0;;-1:-1:-1;;;;;;9006:19:0::1;::::0;;8885:148::o;25331:1488::-;25424:6;25461:12;25447:11;:26;25439:81;;;;-1:-1:-1;;;25439:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25551:23:0;;25529:19;25551:23;;;:14;:23;;;;;;;;25583:20;;:::i;:::-;-1:-1:-1;;;;;;25606:16:0;;;;;;:7;:16;;;;;;;;;25583:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;25583:39:0;;;;;;;;-1:-1:-1;;;25583:39:0;;;;;;;;;;;25662:26;25658:57;;;25706:1;25699:8;;;;;;25658:57;25854:27;25874:6;25854:19;:27::i;:::-;25836:15;:45;:71;;;;25903:4;;25885:15;:22;25836:71;25832:102;;;25925:1;25918:8;;;;;;25832:102;26048:17;;;;;:68;;-1:-1:-1;;;;;;26069:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;26048:68:0;26044:99;;;26134:1;26127:8;;;;;;26044:99;-1:-1:-1;;;;;26194:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;26215:16:0;;26194:38;;;;;;;;;:48;;:63;-1:-1:-1;26190:137:0;;-1:-1:-1;;;;;;26275:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;26296:16:0;;;;26275:38;;;;;;;;:44;-1:-1:-1;;;26275:44:0;;-1:-1:-1;;;;;26275:44:0;;-1:-1:-1;26268:51:0;;26190:137;26335:12;-1:-1:-1;;26373:16:0;;26396:371;26411:5;26403:13;;:5;:13;;;26396:371;;;26469:1;26452:13;;;26451:19;;;26443:27;;26513:20;;:::i;:::-;-1:-1:-1;;;;;;26536:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;26513:51;;;;;;;;;;;;;;;-1:-1:-1;;;26513:51:0;;;-1:-1:-1;;;;;26513:51:0;;;;;;;;;26577:27;;26573:187;;;26624:8;;;;-1:-1:-1;26617:15:0;;-1:-1:-1;;;;;26617:15:0;26573:187;26652:12;;:26;;;-1:-1:-1;26648:112:0;;;26699:6;26691:14;;26648:112;;;26749:1;26740:6;:10;26732:18;;26648:112;26396:371;;;;;-1:-1:-1;;;;;;26780:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;-1:-1:-1;;;;;;;;26780:33:0;;;;;-1:-1:-1;;;25331:1488:0;;;;:::o;24487:207::-;-1:-1:-1;;;;;24590:23:0;;24555:7;24590:23;;;:14;:23;;;;;;;;24627:13;:61;;24687:1;24627:61;;;-1:-1:-1;;;;;24643:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;24664:13:0;;24643:35;;;;;;;;;:41;-1:-1:-1;;;24643:41:0;;-1:-1:-1;;;;;24643:41:0;24627:61;-1:-1:-1;;;;;24620:68:0;;24487:207;-1:-1:-1;;;24487:207:0:o;41313:810::-;41365:20;;:::i;:::-;-1:-1:-1;41396:10:0;41388:19;;;;:7;:19;;;;;;;;;41365:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;41365:42:0;;;;;;;;-1:-1:-1;;;41365:42:0;;;;;;;;-1:-1:-1;;;;;41422:17:0;;41414:81;;;;-1:-1:-1;;;41414:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41510:13;;:21;;41527:4;41510:21;41502:79;;;;-1:-1:-1;;;41502:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41590:23;41616;41628:10;41616:11;:23::i;:::-;41590:49;;41661:15;-1:-1:-1;;;;;41654:22:0;:3;-1:-1:-1;;;;;41654:22:0;;;41646:92;;;;-1:-1:-1;;;41646:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41763:10;41747:27;;;;:15;:27;;;;;;;;:33;;-1:-1:-1;;;;;;41747:33:0;-1:-1:-1;;;;;41747:33:0;;;;;41823:26;;;;;41851:27;;;;41817:110;;;;;;;;;;;;;;41823:26;;41851:27;41817:110;;;;;;:5;:110::i;:::-;41787:140;;41936:55;41960:15;41977:13;41936:23;:55::i;:::-;41998:43;42022:3;42027:13;41998:23;:43::i;:::-;42086:15;-1:-1:-1;;;;;42055:62:0;42081:3;-1:-1:-1;;;;;42055:62:0;42069:10;-1:-1:-1;;;;;42055:62:0;;42103:13;42055:62;;;;-1:-1:-1;;;;;42055:62:0;;;;;;;;;;;;;;;41313:810;;;;:::o;8234:87::-;8280:7;8307:6;-1:-1:-1;;;;;8307:6:0;8234:87;:::o;33001:611::-;8465:12;:10;:12::i;:::-;-1:-1:-1;;;;;8454:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8454:23:0;;8446:68;;;;;-1:-1:-1;;;8446:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8446:68:0;;;;;;;;;;;;;;;33103:4:::1;;33085:15;:22;33077:78;;;;-1:-1:-1::0;;;33077:78:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33186:9;;33170:13;:25;33162:84;;;;-1:-1:-1::0;;;33162:84:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33292:8;33278:9;;33262:13;:25;33261:39;;33253:96;;;;-1:-1:-1::0;;;33253:96:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33382:9;::::0;;33417:4:::1;::::0;33430:25;;;;33382:9;33358:21:::1;33480:25;:6;33442:13:::0;33480:10:::1;:25::i;:::-;33512:4;:14:::0;;;33540:66:::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;;;;;;;33462:43;;-1:-1:-1;33540:66:0::1;::::0;;;;;;;;::::1;8525:1;;;33001:611:::0;:::o;29241:294::-;29318:7;29334:20;;:::i;:::-;-1:-1:-1;;;;;;29357:16:0;;;;;;:7;:16;;;;;;;;;29334:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;29334:39:0;;;;;;;;-1:-1:-1;;;29334:39:0;;;;;;;;;;29380:53;;29424:1;29417:8;;;;;29380:53;29448:81;29467:6;:27;;;-1:-1:-1;;;;;29448:81:0;29496:32;29521:6;29496:24;:32::i;:::-;29448:18;:81::i;31207:297::-;31301:7;31339:11;31321:15;:29;:55;;;;31372:4;;31354:15;:22;31321:55;31317:86;;;-1:-1:-1;31394:1:0;31387:8;;31317:86;31416:82;31429:15;31446:6;31454:15;-1:-1:-1;;;;;31416:82:0;31471:9;31482:15;31416:12;:82::i;20020:19::-;;;;:::o;23877:244::-;-1:-1:-1;;;;;23982:28:0;;;23940:7;23982:28;;;:15;:28;;;;;;23940:7;;23982:28;24021:29;24017:70;;24068:11;24061:18;;;;;19611:31;;;:::o;27938:131::-;28001:7;28024:39;28035:27;28054:7;28035:18;:27::i;:::-;28024:6;;:10;:39::i;32081:645::-;32254:7;32282:6;32274:4;:14;32270:45;;-1:-1:-1;32306:1:0;32299:8;;32270:45;32375:21;32399;:6;32410:9;32399:10;:21::i;:::-;32375:45;;32427:10;32447:13;32440:4;:20;:43;;32479:4;32440:43;;;32463:13;32440:43;32427:56;-1:-1:-1;32564:15:0;32583:50;32623:9;32583:35;32584:11;;;32601:16;32583:17;:35::i;:::-;:39;;:50::i;:::-;32564:70;-1:-1:-1;32692:28:0;32564:70;32704:15;32692:11;:28::i;:::-;32685:35;;;;;32081:645;;;;;;;;:::o;20430:50::-;;;;;;;;;;;;-1:-1:-1;;;;;20430:50:0;;:::o;22269:395::-;8465:12;:10;:12::i;:::-;-1:-1:-1;;;;;8454:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8454:23:0;;8446:68;;;;;-1:-1:-1;;;8446:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8446:68:0;;;;;;;;;;;;;;;22362:11:::1;::::0;:16;22354:57:::1;;;::::0;;-1:-1:-1;;;22354:57:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;22434:11:::0;22467:7;22459:46:::1;;;::::0;;-1:-1:-1;;;22459:46:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;22514:11;:17:::0;;;22545:9:::1;22540:88;22564:3;22560:1;:7;22540:88;;;22616:4;22583:7;:23;22591:11;;22603:1;22591:14;;;;;;;;::::0;;::::1;::::0;;;::::1;;-1:-1:-1::0;;;;;22591:14:0::1;22583:23:::0;;-1:-1:-1;22583:23:0;::::1;::::0;;;;;;-1:-1:-1;22583:23:0;:37;;-1:-1:-1;;22583:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;22569:3:0::1;22540:88;;;;22641:17;22646:11;;22641:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;-1:-1:-1::0;;22641:17:0::1;::::0;;::::1;::::0;;::::1;::::0;-1:-1:-1;22641:17:0;;-1:-1:-1;;;;22641:17:0::1;8525:1;22269:395:::0;;:::o;40046:1127::-;40096:20;;:::i;:::-;-1:-1:-1;40127:10:0;40119:19;;;;:7;:19;;;;;;;;;40096:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;40096:42:0;;;;;;;;-1:-1:-1;;;40096:42:0;;;;;;;;;;;40153:21;40145:71;;;;-1:-1:-1;;;40145:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40225:18;40246:32;40271:6;40246:24;:32::i;:::-;40225:53;;40285:17;40305:59;40324:6;:27;;;-1:-1:-1;;;;;40305:59:0;40353:10;40305:18;:59::i;:::-;40285:79;;40391:1;40379:9;:13;40371:64;;;;-1:-1:-1;;;40371:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40442:13;40458:58;40465:9;40458:58;;;;;;;;;;;;;;;;;:6;:58::i;:::-;40442:74;;40565:24;40599:94;40605:6;:27;;;40634:6;40599:94;;;;;;;;;;;;;;;;;:5;:94::i;:::-;40708:10;40700:19;;;;:7;:19;;;;;:60;;-1:-1:-1;;;;40700:60:0;-1:-1:-1;;;;;;;;40700:60:0;;;;;;;;-1:-1:-1;40785:22:0;:6;40796:10;40785;:22::i;:::-;40769:38;;40814:13;40830:86;40867:6;:26;;;-1:-1:-1;;;;;40830:86:0;40908:5;40830:17;:86::i;:::-;40814:102;;40948:4;;40929:15;:23;40925:84;;40963:38;40975:10;40987:6;40995:5;40963:11;:38::i;:::-;41022:62;;;-1:-1:-1;;;;;41022:62:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41022:62:0;;;41034:10;;41022:62;;;;;;;;;41108:5;-1:-1:-1;;;;;41101:22:0;;41124:3;41129:9;41101:38;;;;;;;;;;;;;-1:-1:-1;;;;;41101:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41101:38:0;41093:74;;;;;-1:-1:-1;;;41093:74:0;;;;;;;;;;;;-1:-1:-1;;;41093:74:0;;;;;;;;;;;;;;;40046:1127;;;;;;;;:::o;28365:137::-;-1:-1:-1;;;;;28479:16:0;;28431:7;28479:16;;;:7;:16;;;;;;;;28454:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;28454:42:0;;;;;;;;-1:-1:-1;;;28454:42:0;;;;;;;;;;;;:24;:42::i;19513:29::-;;;:::o;33893:378::-;8465:12;:10;:12::i;:::-;-1:-1:-1;;;;;8454:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8454:23:0;;8446:68;;;;;-1:-1:-1;;;8446:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8446:68:0;;;;;;;;;;;;;;;34054:8;34084:36;;::::1;34076:64;;;::::0;;-1:-1:-1;;;34076:64:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;34076:64:0;;;;;;;;;;;;;::::1;;34154:9;34149:117;34173:3;34169:1;:7;34149:117;;;34192:66;34219:8;;34228:1;34219:11;;;;;;;;;;;;;-1:-1:-1::0;;;;;34219:11:0::1;34232:22;;34255:1;34232:25;;;;;;;;;;;;;34192:26;:66::i;:::-;34178:3;;34149:117;;;;8525:1;33893:378:::0;;;;:::o;36758:78::-;36804:26;36819:10;36804:14;:26::i;:::-;36758:78::o;20211:68::-;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;20211:68:0;;-1:-1:-1;;;;;20211:68:0;;:::o;9188:244::-;8465:12;:10;:12::i;:::-;-1:-1:-1;;;;;8454:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;8454:23:0;;8446:68;;;;;-1:-1:-1;;;8446:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;8446:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;9277:22:0;::::1;9269:73;;;;-1:-1:-1::0;;;9269:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9379:6;::::0;;9358:38:::1;::::0;-1:-1:-1;;;;;9358:38:0;;::::1;::::0;9379:6;::::1;::::0;9358:38:::1;::::0;::::1;9407:6;:17:::0;;-1:-1:-1;;;;;;9407:17:0::1;-1:-1:-1::0;;;;;9407:17:0;;;::::1;::::0;;;::::1;::::0;;9188:244::o;19239:30::-;;;:::o;1681:181::-;1739:7;1771:5;;;1795:6;;;;1787:46;;;;;-1:-1:-1;;;1787:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;46079:154;46157:6;46191:12;-1:-1:-1;;;46180:9:0;;46172:32;;;;-1:-1:-1;;;46172:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46225:1:0;;46079:154;-1:-1:-1;;46079:154:0:o;46483:175::-;46589:6;46617:1;-1:-1:-1;;;;;46612:6:0;:1;-1:-1:-1;;;;;46612:6:0;;;46620:12;46604:29;;;;;-1:-1:-1;;;46604:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;46647:5:0;;;46483:175::o;44542:389::-;-1:-1:-1;;;;;44646:23:0;;44627:16;44646:23;;;:14;:23;;;;;;;;;44695:13;:61;;44755:1;44695:61;;;-1:-1:-1;;;;;44711:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;44732:13:0;;44711:35;;;;;;;;;:41;-1:-1:-1;;;44711:41:0;;-1:-1:-1;;;;;44711:41:0;44695:61;44676:80;;44763:16;44782:78;44788:9;44799:10;44782:78;;;;;;;;;;;;;;;;;:5;:78::i;:::-;44763:97;;44867:58;44884:7;44893:9;44904;44915;44867:16;:58::i;:::-;44542:389;;;;;:::o;28508:149::-;28583:7;28606:45;28617:33;28642:7;28617:24;:33::i;37588:2313::-;37717:29;37759:19;;37755:481;;37789:13;37805:64;37812:15;37805:64;;;;;;;;;;;;;;;;;:6;:64::i;:::-;37789:80;;37947:129;37963:7;:27;;;38001:6;37947:129;;;;;;;;;;;;;;;;;:5;:129::i;:::-;-1:-1:-1;;;;;38085:23:0;;;;;;:7;:23;;;;;:68;;-1:-1:-1;;38085:68:0;-1:-1:-1;;;;;;;;38085:68:0;;;;;;;-1:-1:-1;37755:481:0;;-1:-1:-1;37755:481:0;;-1:-1:-1;38201:27:0;;;;37755:481;38368:30;38408:158;38424:7;:27;;;38462:7;:28;;;38408:158;;;;;;;;;;;;;;;;;:5;:158::i;:::-;38368:198;;38831:20;38861:160;38877:22;38910:7;:23;38918:14;-1:-1:-1;;;;;38910:23:0;-1:-1:-1;;;;;38910:23:0;;;;;;;;;;;;:44;;;;;;;;;;-1:-1:-1;;;;;38910:44:0;38861:160;;;;;;;;;;;;;;;;;:5;:160::i;:::-;38831:190;;39030:16;39049:27;39061:14;39049:11;:27::i;:::-;39030:46;;39083:11;39193:23;-1:-1:-1;;;;;39177:39:0;:13;-1:-1:-1;;;;;39177:39:0;;39173:428;;;39234:94;39240:13;39255:23;39234:94;;;;;;;;;;;;;;;;;:5;:94::i;:::-;39227:101;;39337:39;39361:8;39371:4;39337:23;:39::i;:::-;39173:428;;;39420:13;-1:-1:-1;;;;;39394:39:0;:23;-1:-1:-1;;;;;39394:39:0;;39390:211;;;39451:94;39457:23;39482:13;39451:94;;;;;;;;;;;;;;;;;:5;:94::i;:::-;39444:101;;39554:39;39578:8;39588:4;39554:23;:39::i;:::-;39673:27;;;;;39709:28;;;;;-1:-1:-1;;;;;39614:281:0;;;39777:23;;;;:7;:23;;;;;;;;;:44;39614:281;;-1:-1:-1;;;;;39614:281:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;39777:44:0;;;;39614:281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37588:2313;;;;;;;;:::o;28663:267::-;28796:25;;;;28743:7;;28788:34;;28833:23;28829:62;;-1:-1:-1;;28874:9:0;;28867:16;;6773:106;6861:10;6773:106;:::o;35399:1042::-;35456:18;;:::i;:::-;-1:-1:-1;;;;;;35477:16:0;;;;;;:7;:16;;;;;;;;;35456:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;35456:37:0;;;;;;;;-1:-1:-1;;;35456:37:0;;;;;;;;;;;35510:19;35502:79;;;;-1:-1:-1;;;35502:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35590:16:0;;;35616:5;35590:16;;;:7;:16;;;;;;;;:31;;-1:-1:-1;;35590:31:0;;;35656:15;:24;;;;;;35711:14;:23;;;;;;;35656:24;;;35711:23;;35745:17;;;;;:50;;-1:-1:-1;;;;;;35766:29:0;;;;35745:50;:80;;;;;35818:7;-1:-1:-1;;;;;35799:26:0;:15;-1:-1:-1;;;;;35799:26:0;;;35745:80;35741:354;;;35836:20;35868:110;35874:4;:24;;;35900:4;:25;;;35868:110;;;;;;;;;;;;;;;;;:5;:110::i;:::-;35836:142;-1:-1:-1;;;;;;35993:17:0;;;35989:99;;36023:55;36047:15;36064:13;36023:23;:55::i;:::-;35741:354;;-1:-1:-1;;;;;36110:24:0;;;;;;:15;:24;;;;;;;;36103:31;;-1:-1:-1;;;;;;36103:31:0;;;36199:25;;;;36176:103;;;;;;;;;;;;;;36182:15;;36176:103;;;;;;;:5;:103::i;:::-;-1:-1:-1;;;;;36143:136:0;;;36301:5;-1:-1:-1;;;;;36294:22:0;;36325:1;36337:15;36294:60;;;;;;;;;;;;;-1:-1:-1;;;;;36294:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36294:60:0;36286:96;;;;;-1:-1:-1;;;36286:96:0;;;;;;;;;;;;-1:-1:-1;;;36286:96:0;;;;;;;;;;;;;;;36396:39;;;;;;;;-1:-1:-1;;;;;36396:39:0;;;;;;;;;;;;;35399:1042;;;;;:::o;44937:389::-;-1:-1:-1;;;;;45041:23:0;;45022:16;45041:23;;;:14;:23;;;;;;;;;45090:13;:61;;45150:1;45090:61;;;-1:-1:-1;;;;;45106:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;45127:13:0;;45106:35;;;;;;;;;:41;-1:-1:-1;;;45106:41:0;;-1:-1:-1;;;;;45106:41:0;45090:61;45071:80;;45158:16;45177:78;45183:9;45194:10;45177:78;;;;;;;;;;;;;;;;;:5;:78::i;3035:471::-;3093:7;3338:6;3334:47;;-1:-1:-1;3368:1:0;3361:8;;3334:47;3405:5;;;3409:1;3405;:5;:1;3429:5;;;;;:10;3421:56;;;;-1:-1:-1;;;3421:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3982:132;4040:7;4067:39;4071:1;4074;4067:39;;;;;;;;;;;;;;;;;:3;:39::i;2145:136::-;2203:7;2230:43;2234:1;2237;2230:43;;;;;;;;;;;;;;;;;:3;:43::i;46281:154::-;46359:6;46393:12;-1:-1:-1;;;46382:9:0;;46374:32;;;;-1:-1:-1;;;46374:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46706:194;46812:6;46838:5;;;46866:12;-1:-1:-1;;;;;46858:6:0;;;;;;;;46850:29;;;;-1:-1:-1;;;46850:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46893:1:0;46706:194;-1:-1:-1;;;;46706:194:0:o;34277:1015::-;34377:20;;:::i;:::-;-1:-1:-1;;;;;;34400:16:0;;;;;;:7;:16;;;;;;;;34377:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;34377:39:0;;;;;;;;-1:-1:-1;;;34377:39:0;;;;;;;;;;;34455:32;34377:39;34455:24;:32::i;:::-;34423:64;;34528:21;34504;:45;34496:112;;;;-1:-1:-1;;;34496:112:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34682:8;34656:21;34632;:45;34631:59;;34615:145;;;;-1:-1:-1;;;34615:145:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34800:9;;34775:21;:34;;34767:102;;;;-1:-1:-1;;;34767:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34878:24;34905:33;:6;34916:21;34905:10;:33::i;:::-;34878:60;;34984:32;:21;:30;:32::i;:::-;-1:-1:-1;;;;;34947:16:0;;;;;;:7;:16;;;;;:69;;-1:-1:-1;;34947:69:0;;;;;;;;;;:16;35051:33;;:6;;35062:21;;35051:10;:33;:::i;:::-;35201:24;;;;;35096:190;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35025:59;;-1:-1:-1;;;;;;35096:190:0;;;;;;;;;;;;34277:1015;;;;;;:::o;45395:636::-;45536:18;45557:79;45564:12;45557:79;;;;;;;;;;;;;;;;;:6;:79::i;:::-;45536:100;;45664:1;45649:12;:16;;;:85;;;;-1:-1:-1;;;;;;45669:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;45692:16:0;;45669:40;;;;;;;;;:50;:65;;;:50;;:65;45649:85;45645:313;;;-1:-1:-1;;;;;45745:22:0;;;;;;:11;:22;;;;;;;;-1:-1:-1;;45768:16:0;;45745:40;;;;;;;;;:57;;-1:-1:-1;;;;;;45745:57:0;-1:-1:-1;;;;;;;;45745:57:0;;;;;;45645:313;;;45864:33;;;;;;;;;;;;;;-1:-1:-1;;;;;45864:33:0;;;;;;;;;;-1:-1:-1;;;;;45825:22:0;;-1:-1:-1;45825:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;;;-1:-1:-1;;;45825:72:0;-1:-1:-1;;;;;;45825:72:0;;;-1:-1:-1;;45825:72:0;;;;;;;;;;;;;;;45906:25;;;:14;:25;;;;;;;:44;;45825:72;45934:16;;45906:44;;;;;;;;;;;;;45645:313;45971:54;;;-1:-1:-1;;;;;45971:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;45971:54:0;;;;;;;;;;;45395:636;;;;;:::o;4610:278::-;4696:7;4731:12;4724:5;4716:28;;;;-1:-1:-1;;;4716:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4755:9;4771:1;4767;:5;;;;;;;4610:278;-1:-1:-1;;;;;4610:278:0:o;2584:192::-;2670:7;2706:12;2698:6;;;;2690:29;;;;-1:-1:-1;;;2690:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11538:179;11594:6;-1:-1:-1;;;11621:5:0;:13;11613:65;;;;-1:-1:-1;;;11613:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11703:5:0;11538:179::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://eaafb7baeaef9b9510dd075b283935e85a800747c23315a010c41acccc702552
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.126621 | 1,920,614.3779 | $243,190.11 |
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.